diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-14 11:01:06 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-14 11:01:06 -0700 |
commit | a16101b49950fba146e8627ffbce3a34e61bb061 (patch) | |
tree | 86ff2fa00c2ff145a37317734b1253cb3975e1df /extension/src/debugPanel.ts | |
parent | 612c4115a0c74b52b77956867e0f47a84eca98a9 (diff) | |
download | sncontinue-a16101b49950fba146e8627ffbce3a34e61bb061.tar.gz sncontinue-a16101b49950fba146e8627ffbce3a34e61bb061.tar.bz2 sncontinue-a16101b49950fba146e8627ffbce3a34e61bb061.zip |
command m reliable toggle
Diffstat (limited to 'extension/src/debugPanel.ts')
-rw-r--r-- | extension/src/debugPanel.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/extension/src/debugPanel.ts b/extension/src/debugPanel.ts index 5e1689d1..dd24a8d8 100644 --- a/extension/src/debugPanel.ts +++ b/extension/src/debugPanel.ts @@ -6,6 +6,7 @@ import { openEditorAndRevealRange, } from "./util/vscode"; import { RangeInFile } from "./client"; +import { setFocusedOnContinueInput } from "./commands"; const WebSocket = require("ws"); let websocketConnections: { [url: string]: WebsocketConnection | undefined } = @@ -226,6 +227,10 @@ export function setupDebugPanel( openEditorAndRevealRange(data.path, undefined, vscode.ViewColumn.One); break; } + case "blurContinueInput": { + setFocusedOnContinueInput(false); + break; + } case "withProgress": { // This message allows withProgress to be used in the webview if (data.done) { |