diff options
| author | Nate Sesti <sestinj@gmail.com> | 2023-08-03 01:16:04 -0700 | 
|---|---|---|
| committer | Nate Sesti <sestinj@gmail.com> | 2023-08-03 01:16:04 -0700 | 
| commit | 01ea5e221db410c1ac1e138caa80a6385458fe9b (patch) | |
| tree | 19941667006e92ee3204c9d76f13521bd27621f2 /extension/src/commands.ts | |
| parent | bfd2f09cd6ebdc18e8162555a1859f0098b14cd3 (diff) | |
| parent | 9c07a0ee6cc4eb12518ecab894b197562837e737 (diff) | |
| download | sncontinue-01ea5e221db410c1ac1e138caa80a6385458fe9b.tar.gz sncontinue-01ea5e221db410c1ac1e138caa80a6385458fe9b.tar.bz2 sncontinue-01ea5e221db410c1ac1e138caa80a6385458fe9b.zip  | |
Merge branch 'main' into package-python [skip ci]
Diffstat (limited to 'extension/src/commands.ts')
| -rw-r--r-- | extension/src/commands.ts | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/extension/src/commands.ts b/extension/src/commands.ts index 35d466e8..351c055d 100644 --- a/extension/src/commands.ts +++ b/extension/src/commands.ts @@ -52,6 +52,16 @@ const commandsMap: { [command: string]: (...args: any) => any } = {      }      focusedOnContinueInput = !focusedOnContinueInput;    }, +  "continue.focusContinueInputWithEdit": async () => { +    vscode.commands.executeCommand("continue.continueGUIView.focus"); +    debugPanelWebview?.postMessage({ +      type: "focusContinueInputWithEdit", +    }); +    focusedOnContinueInput = true; +  }, +  "continue.toggleAuxiliaryBar": () => { +    vscode.commands.executeCommand("workbench.action.toggleAuxiliaryBar"); +  },    "continue.quickTextEntry": async () => {      const text = await vscode.window.showInputBox({        placeHolder:  | 
