summaryrefslogtreecommitdiff
path: root/extension/src/commands.ts
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-14 11:01:06 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-14 11:01:06 -0700
commita16101b49950fba146e8627ffbce3a34e61bb061 (patch)
tree86ff2fa00c2ff145a37317734b1253cb3975e1df /extension/src/commands.ts
parent612c4115a0c74b52b77956867e0f47a84eca98a9 (diff)
downloadsncontinue-a16101b49950fba146e8627ffbce3a34e61bb061.tar.gz
sncontinue-a16101b49950fba146e8627ffbce3a34e61bb061.tar.bz2
sncontinue-a16101b49950fba146e8627ffbce3a34e61bb061.zip
command m reliable toggle
Diffstat (limited to 'extension/src/commands.ts')
-rw-r--r--extension/src/commands.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/extension/src/commands.ts b/extension/src/commands.ts
index 0025340a..888f01ed 100644
--- a/extension/src/commands.ts
+++ b/extension/src/commands.ts
@@ -16,11 +16,14 @@ import {
import { acceptDiffCommand, rejectDiffCommand } from "./diffs";
import * as bridge from "./bridge";
import { debugPanelWebview } from "./debugPanel";
-import { sendTelemetryEvent, TelemetryEvent } from "./telemetry";
import { ideProtocolClient } from "./activation/activate";
let focusedOnContinueInput = false;
+export const setFocusedOnContinueInput = (value: boolean) => {
+ focusedOnContinueInput = value;
+};
+
// Copy everything over from extension.ts
const commandsMap: { [command: string]: (...args: any) => any } = {
"continue.suggestionDown": suggestionDownCommand,