diff options
Diffstat (limited to 'extension/src')
| -rw-r--r-- | extension/src/commands.ts | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/extension/src/commands.ts b/extension/src/commands.ts index 2b7f4c0c..1da2f04e 100644 --- a/extension/src/commands.ts +++ b/extension/src/commands.ts @@ -40,6 +40,9 @@ const commandsMap: { [command: string]: (...args: any) => any } = {          edit ? "/edit " : ""        }${code}\n\nHow do I fix this problem in the above code?: ${message}`      ); +    if (!edit) { +      vscode.commands.executeCommand("continue.continueGUIView.focus"); +    }    },    "continue.focusContinueInput": async () => {      if (focusedOnContinueInput) {  | 
