diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-21 15:02:20 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-21 15:02:20 -0700 |
commit | 1e1012a2cd8537af1ba1a65227a6473da44a2578 (patch) | |
tree | ddde503082b4296ee612340d14c79aa102b66ba0 /extension/src/commands.ts | |
parent | 233c261862e03960da0346d0dd18303ee002007e (diff) | |
download | sncontinue-1e1012a2cd8537af1ba1a65227a6473da44a2578.tar.gz sncontinue-1e1012a2cd8537af1ba1a65227a6473da44a2578.tar.bz2 sncontinue-1e1012a2cd8537af1ba1a65227a6473da44a2578.zip |
removing captured terminal
Diffstat (limited to 'extension/src/commands.ts')
-rw-r--r-- | extension/src/commands.ts | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/extension/src/commands.ts b/extension/src/commands.ts index 22e15c43..291a3ceb 100644 --- a/extension/src/commands.ts +++ b/extension/src/commands.ts @@ -13,7 +13,6 @@ import { } from "./suggestions"; import * as bridge from "./bridge"; import { debugPanelWebview, setupDebugPanel } from "./debugPanel"; -// import { openCapturedTerminal } from "./terminal/terminalEmulator"; import { getRightViewColumn } from "./util/vscode"; import { findSuspiciousCode, @@ -67,10 +66,6 @@ const commandsMap: { [command: string]: (...args: any) => any } = { type: "focusContinueInput", }); }, - "continue.openCapturedTerminal": () => { - // Happens in webview resolution function - // openCapturedTerminal(); - }, "continue.findSuspiciousCode": async ( debugContext: SerializedDebugContext ) => { |