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 | b19076ddb6d11acb5ffd54046d9e5cad549c00c1 (patch) | |
tree | 7861b4a6919d670147eaebedf940d9c77e09682e /extension/src/debugPanel.ts | |
parent | 39cd2ef27d6ed439b00a9edec4a487343ff1c2c9 (diff) | |
download | sncontinue-b19076ddb6d11acb5ffd54046d9e5cad549c00c1.tar.gz sncontinue-b19076ddb6d11acb5ffd54046d9e5cad549c00c1.tar.bz2 sncontinue-b19076ddb6d11acb5ffd54046d9e5cad549c00c1.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) { |