Skip to content

Commit 6804e1e

Browse files
committed
Merge branch 'master' of github.com:joonty/vdebug
2 parents f3a1b57 + d58f15a commit 6804e1e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/Vdebug.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ variable name, type, length (if applicable) and value are shown. They are shown
449449
as a tree, because arrays/lists and objects have children. Hopefully it's
450450
fairly self-explanatory: right arrows show a closed tree, down arrows show an
451451
open tree and diamonds show variables that don't have children. These markers
452-
be customised (see |VdebugOptions|), and will fall back to ASCII equivalents
452+
can be customised (see |VdebugOptions|), and will fall back to ASCII equivalents
453453
if multi byte support is not enabled in the VIM configuration.
454454

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

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

@@ -513,7 +513,7 @@ to go for help!
513513

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

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

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

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

830830
*VdebugOptions-on_close*
831831
g:vdebug_options["on_close"] (default = "detach")

0 commit comments

Comments
 (0)