From 064ab8d96f53149e097f972237f5c6a180d359f2 Mon Sep 17 00:00:00 2001 From: cyfung1031 <44498510+cyfung1031@users.noreply.github.com> Date: Sun, 22 Mar 2026 18:35:34 +0900 Subject: [PATCH] =?UTF-8?q?Editor:=20=E4=BF=AE=E6=AD=A3=20Ctrl-F=20Ctrl-H?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/options/routes/script/ScriptEditor.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/options/routes/script/ScriptEditor.tsx b/src/pages/options/routes/script/ScriptEditor.tsx index fc6e4c8b9..2cb856004 100644 --- a/src/pages/options/routes/script/ScriptEditor.tsx +++ b/src/pages/options/routes/script/ScriptEditor.tsx @@ -550,6 +550,7 @@ function ScriptEditor() { { id: "find", title: t("find"), + hotKey: KeyMod.CtrlCmd | KeyCode.KeyF, hotKeyString: "Ctrl+F", action(_script, e) { e.getAction("actions.find")?.run(); @@ -558,6 +559,7 @@ function ScriptEditor() { { id: "replace", title: t("replace"), + hotKey: KeyMod.CtrlCmd | KeyCode.KeyH, hotKeyString: "Ctrl+H", action(_script, e) { e.getAction("editor.action.startFindReplaceAction")?.run();