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 | 241c023c37fa47785c8d63d3bd6f77cb30fa2d7a (patch) | |
tree | b1a4ac2862c8dc5d805a948a6a0a1249aef9bc34 /extension/src/commands.ts | |
parent | f8bc06261464cd46c31a23cc8cbc0e76fb642d18 (diff) | |
parent | 4a77e7251c36dfcce15d68471dd8865c698ad679 (diff) | |
download | sncontinue-241c023c37fa47785c8d63d3bd6f77cb30fa2d7a.tar.gz sncontinue-241c023c37fa47785c8d63d3bd6f77cb30fa2d7a.tar.bz2 sncontinue-241c023c37fa47785c8d63d3bd6f77cb30fa2d7a.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) => {} } = { |