diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-19 18:45:46 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-19 18:45:46 -0700 |
commit | 2f777ea933d4a41b600feedeff7d85257c5b136d (patch) | |
tree | c58c8b95e8ed57d394ddb562b720370a1aeac8f1 /extension/src | |
parent | 6bcb3dcb7158ccb9674f79978b343312f9ad8a31 (diff) | |
download | sncontinue-2f777ea933d4a41b600feedeff7d85257c5b136d.tar.gz sncontinue-2f777ea933d4a41b600feedeff7d85257c5b136d.tar.bz2 sncontinue-2f777ea933d4a41b600feedeff7d85257c5b136d.zip |
transparent bg fix
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) { |