@@ -449,7 +449,7 @@ variable name, type, length (if applicable) and value are shown. They are shown
449
449
as a tree, because arrays/lists and objects have children. Hopefully it's
450
450
fairly self-explanatory: right arrows show a closed tree, down arrows show an
451
451
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
453
453
if multi byte support is not enabled in the VIM configuration.
454
454
455
455
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).
481
481
4.2.3 The stack window *VdebugStackWindow*
482
482
483
483
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
485
485
position. The top entry ([0]) is always the current position, and the entries
486
486
below show the path the script has taken.
487
487
@@ -513,7 +513,7 @@ to go for help!
513
513
514
514
This is a bit of an odd one out, as it doesn't show by default and can be
515
515
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.
517
517
518
518
To open the window use the command :BreakpointWindow. It's in a table format,
519
519
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.
554
554
555
555
4.3.3 Step in *VdebugCommandStepIn*
556
556
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.
558
558
For instance, if there's a function call on the current line it will jump to
559
559
the start of that function.
560
560
@@ -825,7 +825,7 @@ g:vdebug_options["server"] (default = "localhost")
825
825
g:vdebug_options["timeout"] (default = 20)
826
826
Number of seconds to wait for when listening for a connection. VIM will
827
827
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!
829
829
830
830
*VdebugOptions-on_close*
831
831
g:vdebug_options["on_close"] (default = "detach")
0 commit comments