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 | b511cb76792add9b4297c2c2765ffa7ac77e359d (patch) | |
tree | e950e73f24cb1463fbd8ec6b5262b16cde7f0769 /extension/src/commands.ts | |
parent | 5237ae04282441f952ebb7e090b935e8bf43dedf (diff) | |
download | sncontinue-b511cb76792add9b4297c2c2765ffa7ac77e359d.tar.gz sncontinue-b511cb76792add9b4297c2c2765ffa7ac77e359d.tar.bz2 sncontinue-b511cb76792add9b4297c2c2765ffa7ac77e359d.zip |
transparent bg fix
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) { |