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 | cc7ef4631f8f1bd141788c8e3117df1aca16b308 (patch) | |
tree | 21ae444d30e924c3c8c6f76bf160a30cbe9f560e /extension/src/commands.ts | |
parent | 3df2e8112564b9d3c29931b1f4ecc6ee0a52dac5 (diff) | |
download | sncontinue-cc7ef4631f8f1bd141788c8e3117df1aca16b308.tar.gz sncontinue-cc7ef4631f8f1bd141788c8e3117df1aca16b308.tar.bz2 sncontinue-cc7ef4631f8f1bd141788c8e3117df1aca16b308.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 ) => { |