From 9f621622a2259be7b639c4cbdac7b7e469ace69e Mon Sep 17 00:00:00 2001 From: Nate Sesti Date: Thu, 6 Jul 2023 20:34:02 -0700 Subject: quick text entry --- extension/src/commands.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'extension/src/commands.ts') diff --git a/extension/src/commands.ts b/extension/src/commands.ts index 4414a171..ffb67ab5 100644 --- a/extension/src/commands.ts +++ b/extension/src/commands.ts @@ -17,6 +17,7 @@ import { acceptDiffCommand, rejectDiffCommand } from "./diffs"; import * as bridge from "./bridge"; import { debugPanelWebview } from "./debugPanel"; import { sendTelemetryEvent, TelemetryEvent } from "./telemetry"; +import { ideProtocolClient } from "./activation/activate"; // Copy everything over from extension.ts const commandsMap: { [command: string]: (...args: any) => any } = { @@ -63,6 +64,17 @@ const commandsMap: { [command: string]: (...args: any) => any } = { type: "focusContinueInput", }); }, + "continue.quickTextEntry": async () => { + const text = await vscode.window.showInputBox({ + placeHolder: + "Ask a question, give instructions, or enter a slash command", + title: "Continue Quick Input", + }); + if (text) { + ideProtocolClient.sendMainUserInput(text); + } + vscode.commands.executeCommand("continue.continueGUIView.focus"); + }, }; const textEditorCommandsMap: { [command: string]: (...args: any) => {} } = { -- cgit v1.2.3-70-g09d2