Skip to content

Commit

Permalink
Added help for continuous_mode option, see #19
Browse files Browse the repository at this point in the history
  • Loading branch information
joonty committed Nov 13, 2012
1 parent 9827a12 commit 37a9025
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions doc/Vdebug.txt
Original file line number Diff line number Diff line change
Expand Up @@ -837,6 +837,13 @@ g:vdebug_options["marker_open_tree"] (default = '▾')
children, and the tree is currently open. A "-" symbol is used if multi
byte support is not enabled.

*VdebugOptions-continuous_mode*
g:vdebug_options["continuous_mode"] (default = 0)
If enabled, Vdebug will start listening immediately after a debugging
session has finished, allowing for constant debugging across separate
requests. Press <F6> during a debugging session to stop this, or <Ctrl-C>
when Vdebug is listening.

==============================================================================
6. Key maps *VdebugKeys*

Expand Down
2 changes: 1 addition & 1 deletion plugin/vdebug.vim
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ let g:vdebug_options_defaults = {
\ "marker_default" : '',
\ "marker_closed_tree" : '',
\ "marker_open_tree" : '',
\ "continuous_mode" : 1
\ "continuous_mode" : 0
\}

if has('multi_byte') == 0
Expand Down

0 comments on commit 37a9025

Please sign in to comment.