From b60bc2996b0a30869fd8e4113ccf9b70f6423a33 Mon Sep 17 00:00:00 2001 From: Charlie Humphreys Date: Fri, 10 Dec 2021 23:05:16 -0600 Subject: [PATCH] Update search/replace shortcuts and add 'Enter'-based shortcut for navigating backwards --- shared/naturalcrit/codeEditor/codeEditor.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/shared/naturalcrit/codeEditor/codeEditor.jsx b/shared/naturalcrit/codeEditor/codeEditor.jsx index 3aa4ffbde..f2baea264 100644 --- a/shared/naturalcrit/codeEditor/codeEditor.jsx +++ b/shared/naturalcrit/codeEditor/codeEditor.jsx @@ -131,8 +131,9 @@ const CodeEditor = createClass({ 'Shift-Cmd-Enter' : this.newColumn, 'Ctrl-Enter' : this.newPage, 'Cmd-Enter' : this.newPage, - 'Ctrl-Alt-F' : this.findPersistent, - 'Cmd-Opt-F' : this.findPersistent, + 'Ctrl-F' : 'findPersistent', + 'Cmd-F' : 'findPersistent', + 'Shift-Enter' : 'findPersistentPrevious', 'Ctrl-[' : this.foldAllCode, 'Cmd-[' : this.foldAllCode, 'Ctrl-]' : this.unfoldAllCode,