@@ -2248,8 +2248,10 @@ the `dlv` process, or |:GoDebugRestart| to recompile the code.
2248
2248
*go-debug-commands*
2249
2249
DEBUGGER COMMANDS~
2250
2250
2251
- Only | :GoDebugStart | and | :GoDebugBreakpoint | are available by default; the
2252
- rest of the commands and mappings become available after starting debug mode.
2251
+ Only | :GoDebugStart | , `:GoDebugTest` , and | :GoDebugBreakpoint | are available
2252
+ by default. `:GoDebugContinue` becomes available after running `:GoDebugStart`
2253
+ or `:GoDebugTest` . The rest of the commands and mappings become available after
2254
+ executing `:GoDebugContinue` .
2253
2255
2254
2256
*:GoDebugStart*
2255
2257
:GoDebugStart [pkg] [program-args]
@@ -2316,7 +2318,6 @@ rest of the commands and mappings become available after starting debug mode.
2316
2318
2317
2319
Advance execution by one line, also called "step over" by some other
2318
2320
debuggers.
2319
- It will behave as | :GoDebugContinue | if the program isn't started.
2320
2321
2321
2322
Mapped to <F10> by default.
2322
2323
@@ -2326,7 +2327,6 @@ rest of the commands and mappings become available after starting debug mode.
2326
2327
2327
2328
Advance execution by one step, stopping at the next line of code that will
2328
2329
be executed (regardless of location).
2329
- It will behave as | :GoDebugContinue | if the program isn't started.
2330
2330
2331
2331
Mapped to <F11> by default.
2332
2332
@@ -2337,7 +2337,6 @@ rest of the commands and mappings become available after starting debug mode.
2337
2337
2338
2338
Run all the code in the current function and halt when the function
2339
2339
returns ("step out of the current function").
2340
- It will behave as | :GoDebugContinue | if the program isn't started.
2341
2340
2342
2341
*:GoDebugSet*
2343
2342
:GoDebugSet {var} {value}
0 commit comments