mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
fix default keyboard shortcuts for mac forward, back, closes #3708
This commit is contained in:
parent
7b1d6c3937
commit
7cda81ec68
@ -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"
|
||||
},
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user