We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e4bf7f commit eb10676Copy full SHA for eb10676
src/features/DebugSession.ts
@@ -143,6 +143,7 @@ export class SpecifyScriptArgsFeature implements IFeature {
143
}
144
145
return vscode.window.showInputBox(options).then(text => {
146
+ // When user cancel's the input box (by pressing Esc), the text value is undefined.
147
if (text !== undefined) {
148
this.context.globalState.update(powerShellDbgScriptArgsKey, text);
149
return new Array(text);
0 commit comments