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 87e5a41 commit c30ddd4Copy full SHA for c30ddd4
src/commands/variables/addVariable.ts
@@ -11,15 +11,17 @@ export function registerAddVariable(context: vscode.ExtensionContext) {
11
12
const name = await vscode.window.showInputBox({
13
prompt: "Enter name for new variable",
14
- placeHolder: "Variable name"
+ placeHolder: "Variable name",
15
+ ignoreFocusOut: true
16
});
17
18
if (!name) {
19
return;
20
}
21
22
const value = await vscode.window.showInputBox({
- prompt: "Enter the new variable value"
23
+ prompt: "Enter the new variable value",
24
25
26
27
if (!value) {
0 commit comments