Skip to content

Commit

Permalink
Merge branch 'master' of github.com:joonty/vdebug
Browse files Browse the repository at this point in the history
  • Loading branch information
joonty committed Nov 11, 2013
2 parents f3a1b57 + d58f15a commit 6804e1e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/Vdebug.txt
Expand Up @@ -449,7 +449,7 @@ variable name, type, length (if applicable) and value are shown. They are shown
as a tree, because arrays/lists and objects have children. Hopefully it's
fairly self-explanatory: right arrows show a closed tree, down arrows show an
open tree and diamonds show variables that don't have children. These markers
be customised (see |VdebugOptions|), and will fall back to ASCII equivalents
can be customised (see |VdebugOptions|), and will fall back to ASCII equivalents
if multi byte support is not enabled in the VIM configuration.

To open a closed tree, navigate to a line with a closed tree (right arrow) and
Expand Down Expand Up @@ -481,7 +481,7 @@ can return to the variable context with <F11> (default).
4.2.3 The stack window *VdebugStackWindow*

The stack window shows the current execution stack, which is a list of files
and functions/methods that the program has run through to get the current
and functions/methods that the program has run through to get to the current
position. The top entry ([0]) is always the current position, and the entries
below show the path the script has taken.

Expand Down Expand Up @@ -513,7 +513,7 @@ to go for help!

This is a bit of an odd one out, as it doesn't show by default and can be
summoned at will. It lists all the breakpoints that have been set, and shows
their IDs that can be used to remove them.
the IDs that can be used to remove them.

To open the window use the command :BreakpointWindow. It's in a table format,
so hopefully it won't need any more explanation. To close the window again,
Expand Down Expand Up @@ -554,7 +554,7 @@ debugging, and the default keys mapped to those commands.

4.3.3 Step in *VdebugCommandStepIn*
Default key: <F3>
Tells the debugger engine to step in to a statement on the current line.
Tells the debugger engine to step into a statement on the current line.
For instance, if there's a function call on the current line it will jump to
the start of that function.

Expand Down Expand Up @@ -825,7 +825,7 @@ g:vdebug_options["server"] (default = "localhost")
g:vdebug_options["timeout"] (default = 20)
Number of seconds to wait for when listening for a connection. VIM will
lock up due to the server socket listening for a client connection, so this
timeout is there to protect your VIM for locking up forever!
timeout is there to protect your VIM from locking up forever!

*VdebugOptions-on_close*
g:vdebug_options["on_close"] (default = "detach")
Expand Down

0 comments on commit 6804e1e

Please sign in to comment.