From 3104ecde0ca596dd5417431d0d03e29445a301b4 Mon Sep 17 00:00:00 2001 From: Tienson Qin Date: Mon, 22 Feb 2021 15:42:22 +0800 Subject: [PATCH] enhance: enable mod+shift+z to redo --- src/main/frontend/keyboards.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/frontend/keyboards.cljs b/src/main/frontend/keyboards.cljs index f1b1d57d5..91e59f8ab 100644 --- a/src/main/frontend/keyboards.cljs +++ b/src/main/frontend/keyboards.cljs @@ -54,6 +54,7 @@ (or (shortcut :editor/undo) "mod+z") [history-handler/undo! true] (or (shortcut :editor/redo) "mod+y") [history-handler/redo! true] + (or (shortcut :editor/redo) "mod+shift+z") [history-handler/redo! true] (or (shortcut :go/search) "mod+u") [route-handler/go-to-search! true] (or (shortcut :go/journals) (if util/mac? "mod+j" "alt+j")) [route-handler/go-to-journals! true] (or (shortcut :editor/zoom-in)