Skip to content

Commit d58f15a

Browse files
committed
Merge pull request #108 from dkinzer/master
Correct minor spelling and grammar errors in help doc.
2 parents 4c36c23 + fc87283 commit d58f15a

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
@@ -442,7 +442,7 @@ variable name, type, length (if applicable) and value are shown. They are shown
442442
as a tree, because arrays/lists and objects have children. Hopefully it's
443443
fairly self-explanatory: right arrows show a closed tree, down arrows show an
444444
open tree and diamonds show variables that don't have children. These markers
445-
be customised (see |VdebugOptions|), and will fall back to ASCII equivalents
445+
can be customised (see |VdebugOptions|), and will fall back to ASCII equivalents
446446
if multi byte support is not enabled in the VIM configuration.
447447

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

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

@@ -506,7 +506,7 @@ to go for help!
506506

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

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

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

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

823823
*VdebugOptions-on_close*
824824
g:vdebug_options["on_close"] (default = "detach")

0 commit comments

Comments
 (0)