summaryrefslogtreecommitdiff
path: root/extension/src/debugPanel.ts
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-14 11:01:06 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-14 11:01:06 -0700
commitb19076ddb6d11acb5ffd54046d9e5cad549c00c1 (patch)
tree7861b4a6919d670147eaebedf940d9c77e09682e /extension/src/debugPanel.ts
parent39cd2ef27d6ed439b00a9edec4a487343ff1c2c9 (diff)
downloadsncontinue-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.ts5
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) {