fix default keyboard shortcuts for mac forward, back, closes #3708

This commit is contained in:
zadam 2023-03-14 21:07:14 +01:00
parent 7b1d6c3937
commit 7cda81ec68

View File

@ -14,13 +14,13 @@ const DEFAULT_KEYBOARD_ACTIONS = [
{
actionName: "backInNoteHistory",
// Mac has a different history navigation shortcuts - https://github.com/zadam/trilium/issues/376
defaultShortcuts: isMac ? ["Meta+Left"] : ["Alt+Left"],
defaultShortcuts: isMac ? ["CommandOrControl+Left"] : ["Alt+Left"],
scope: "window"
},
{
actionName: "forwardInNoteHistory",
// Mac has a different history navigation shortcuts - https://github.com/zadam/trilium/issues/376
defaultShortcuts: isMac ? ["Meta+Right"] : ["Alt+Right"],
defaultShortcuts: isMac ? ["CommandOrControl+Right"] : ["Alt+Right"],
scope: "window"
},
{