We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00e1f9c commit df225ceCopy full SHA for df225ce
1 file changed
src/pages/options/routes/script/ScriptEditor.tsx
@@ -550,6 +550,7 @@ function ScriptEditor() {
550
{
551
id: "find",
552
title: t("find"),
553
+ hotKey: KeyMod.CtrlCmd | KeyCode.KeyF,
554
hotKeyString: "Ctrl+F",
555
action(_script, e) {
556
e.getAction("actions.find")?.run();
@@ -558,6 +559,7 @@ function ScriptEditor() {
558
559
560
id: "replace",
561
title: t("replace"),
562
+ hotKey: KeyMod.CtrlCmd | KeyCode.KeyH,
563
hotKeyString: "Ctrl+H",
564
565
e.getAction("editor.action.startFindReplaceAction")?.run();
0 commit comments