You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While debugging a script in PSv4+, the user should be able to type commands in the console to cause the debugger to continue execution. Typing ? in the console causes these commands to be offered:
s, stepInto Single step (step into functions, scripts, etc.)
v, stepOver Step to next statement (step over functions, scripts, etc.)
o, stepOut Step out of the current function, script, etc.
c, continue Continue operation
q, quit Stop operation and exit the debugger
d, detach Continue operation and detach the debugger.
k, Get-PSCallStack Display call stack
l, list List source code for the current script.
Use "list" to start from the current line, "list <m>"
to start from line <m>, and "list <m> <n>" to list <n>
lines starting from line <m>
<enter> Repeat last command if it was stepInto, stepOver or list
?, h displays this help message.
For instructions about how to customize your debugger prompt, type "help about_prompt".
Currently none of these commands are working when used, the debugger remains stopped at the same line or breakpoint.
The text was updated successfully, but these errors were encountered:
This change enables debugger commands in the integrated console by acting
on the DebuggerResumeAction that is returned by the debugger when a
command gets executed. If a DebuggerResumeAction is returned, it is used
to resume the debugger in whatever way the user requested by typing a
command.
ResolvesPowerShell/vscode-powershell#600.
While debugging a script in PSv4+, the user should be able to type commands in the console to cause the debugger to continue execution. Typing
?
in the console causes these commands to be offered:Currently none of these commands are working when used, the debugger remains stopped at the same line or breakpoint.
The text was updated successfully, but these errors were encountered: