diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-22 13:07:03 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-22 13:07:03 -0700 |
commit | 70ad90116b73909347497a307cb1488065096696 (patch) | |
tree | df7376f0711d137be208cdaa1a380abb7cd3f393 /extension/src/commands.ts | |
parent | 4f9f2c86158f7f6919cf736b2a1a33c61a9ad483 (diff) | |
parent | e203dd81262d231aed2b73f269c7863dde010d3c (diff) | |
download | sncontinue-70ad90116b73909347497a307cb1488065096696.tar.gz sncontinue-70ad90116b73909347497a307cb1488065096696.tar.bz2 sncontinue-70ad90116b73909347497a307cb1488065096696.zip |
Merge branch 'main' of https://github.com/continuedev/continue
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 13357c99..77273343 100644 --- a/extension/src/commands.ts +++ b/extension/src/commands.ts @@ -12,7 +12,6 @@ import { } from "./suggestions"; import * as bridge from "./bridge"; import { debugPanelWebview } from "./debugPanel"; -import { writeUnitTestForFunction } from "./bridge"; import { sendTelemetryEvent, TelemetryEvent } from "./telemetry"; // Copy everything over from extension.ts @@ -56,10 +55,6 @@ const commandsMap: { [command: string]: (...args: any) => any } = { type: "focusContinueInput", }); }, - "continue.openCapturedTerminal": () => { - // Happens in webview resolution function - // openCapturedTerminal(); - }, }; const textEditorCommandsMap: { [command: string]: (...args: any) => {} } = { |