@@ -403,7 +403,7 @@ Vdebug is now listening for an incoming connection, which will be started when
403
403
a script is run with the debugger engine activated. View the section
404
404
|VdebugSetUp| to see the necessary steps to start a script in this way. It will
405
405
be obvious when a connection is made, because a new VIM tab opens with four
406
- windows, signalling the start of a new debugging session.
406
+ windows, signaling the start of a new debugging session.
407
407
408
408
If you are starting a script but Vdebug does not react, see the
409
409
|VdebugTroubleshooting| section for information.
@@ -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 customized (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
@@ -580,10 +580,10 @@ debugging, and the default keys mapped to those commands.
580
580
4.4 Breakpoints *VdebugBreakpoints*
581
581
582
582
This section explains how to set and remove line breakpoints, and also how to
583
- set more advanced types of breakpoint . It also explains how to manage your list
583
+ set more advanced types of breakpoints . It also explains how to manage your list
584
584
of breakpoints.
585
585
586
- There are several types of breakpoint , and their support varies between
586
+ There are several types of breakpoints , and their support varies between
587
587
debugger engines. The breakpoint types are:
588
588
589
589
* Line: break at a line in a given file
@@ -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