diff options
-rw-r--r-- | extension/react-app/src/components/ComboBox.tsx | 2 | ||||
-rw-r--r-- | extension/src/commands.ts | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx index 3b20cd8d..31c3ddef 100644 --- a/extension/react-app/src/components/ComboBox.tsx +++ b/extension/react-app/src/components/ComboBox.tsx @@ -258,7 +258,7 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => { } else if (event.data.type === "focusContinueInputWithEdit") { inputRef.current!.focus(); - downshiftProps.setInputValue("/edit"); + downshiftProps.setInputValue("/edit "); } }; window.addEventListener("message", handler); diff --git a/extension/src/commands.ts b/extension/src/commands.ts index 433982ed..351c055d 100644 --- a/extension/src/commands.ts +++ b/extension/src/commands.ts @@ -61,9 +61,6 @@ const commandsMap: { [command: string]: (...args: any) => any } = { }, "continue.toggleAuxiliaryBar": () => { vscode.commands.executeCommand("workbench.action.toggleAuxiliaryBar"); - debugPanelWebview?.postMessage({ - type: "focusContinueInputWithEdit", - }); }, "continue.quickTextEntry": async () => { const text = await vscode.window.showInputBox({ |