@@ -442,7 +442,7 @@ variable name, type, length (if applicable) and value are shown. They are shown
442
442
as a tree, because arrays/lists and objects have children. Hopefully it's
443
443
fairly self-explanatory: right arrows show a closed tree, down arrows show an
444
444
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
446
446
if multi byte support is not enabled in the VIM configuration.
447
447
448
448
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).
474
474
4.2.3 The stack window *VdebugStackWindow*
475
475
476
476
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
478
478
position. The top entry ([0]) is always the current position, and the entries
479
479
below show the path the script has taken.
480
480
@@ -506,7 +506,7 @@ to go for help!
506
506
507
507
This is a bit of an odd one out, as it doesn't show by default and can be
508
508
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.
510
510
511
511
To open the window use the command :BreakpointWindow. It's in a table format,
512
512
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.
547
547
548
548
4.3.3 Step in *VdebugCommandStepIn*
549
549
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.
551
551
For instance, if there's a function call on the current line it will jump to
552
552
the start of that function.
553
553
@@ -818,7 +818,7 @@ g:vdebug_options["server"] (default = "localhost")
818
818
g:vdebug_options["timeout"] (default = 20)
819
819
Number of seconds to wait for when listening for a connection. VIM will
820
820
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!
822
822
823
823
*VdebugOptions-on_close*
824
824
g:vdebug_options["on_close"] (default = "detach")
0 commit comments