Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small documentation fix #31

Merged
merged 1 commit into from Jan 8, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions doc/Vdebug.txt
Expand Up @@ -877,10 +877,10 @@ g:vdebug_options["continuous_mode"] (default = 0)
By default, function keys are mapped to execute debugger commands. However, I'm
aware that people may already have them mapped to something else, so would like
to change the default behaviour. Before you do that, be aware that Vdebug only
maps one command outside of the debugger mode, which is "run". All others are
mapped only when Vdebug starts up, and unmapped when it shuts down. Not only this,
but any commands that you have already mapped to these keys will be remembered
and restored when you come out of debugging mode.
maps two commands outside of the debugger mode, "run" and "set_breakpoint". All
others are mapped only when Vdebug starts up, and unmapped when it shuts down.
Not only this, but any commands that you have already mapped to these keys will
be remembered and restored when you come out of debugging mode.

If you would still like to remap the default keys, this is possible using the
key map dictionary, g:vdebug_keymap: >
Expand All @@ -900,7 +900,7 @@ key map dictionary, g:vdebug_keymap: >
<

As you can see, these are the default keys. You can change the keys using the
multi-line notation as shown above, or by setting invidiual keys: >
multi-line notation as shown above, or by setting individual keys: >

let g:vdebug_keymap['run'] = '<C-s>'
<
Expand Down