diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-24 01:31:54 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-24 01:31:54 -0700 |
commit | 96b3f2c15de5f7cdab646323b65a92aeeb08ae17 (patch) | |
tree | 0c6235df9885079de82e5c392042eb2c7aae088c /extension/src/commands.ts | |
parent | dac960348a938552de4a6fcfaff32e517e6ebcb1 (diff) | |
parent | 6efe8ce9db21f1991dc1b5cc68657f419afca825 (diff) | |
download | sncontinue-96b3f2c15de5f7cdab646323b65a92aeeb08ae17.tar.gz sncontinue-96b3f2c15de5f7cdab646323b65a92aeeb08ae17.tar.bz2 sncontinue-96b3f2c15de5f7cdab646323b65a92aeeb08ae17.zip |
Merge branch 'main' into config-py
Diffstat (limited to 'extension/src/commands.ts')
-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) { |