mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
new default keyboard shortcuts alt+up/down/left/right for moving notes on Mac
This commit is contained in:
parent
31fb02f810
commit
96c4934c00
@ -98,25 +98,25 @@ const DEFAULT_KEYBOARD_ACTIONS = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
actionName: "moveNoteUp",
|
actionName: "moveNoteUp",
|
||||||
defaultShortcuts: ["CommandOrControl+Up"],
|
defaultShortcuts: isMac ? ["Alt+Up"] : ["CommandOrControl+Up"],
|
||||||
description: "Move note up",
|
description: "Move note up",
|
||||||
scope: "note-tree"
|
scope: "note-tree"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
actionName: "moveNoteDown",
|
actionName: "moveNoteDown",
|
||||||
defaultShortcuts: ["CommandOrControl+Down"],
|
defaultShortcuts: isMac ? ["Alt+Down"] : ["CommandOrControl+Down"],
|
||||||
description: "Move note down",
|
description: "Move note down",
|
||||||
scope: "note-tree"
|
scope: "note-tree"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
actionName: "moveNoteUpInHierarchy",
|
actionName: "moveNoteUpInHierarchy",
|
||||||
defaultShortcuts: ["CommandOrControl+Left"],
|
defaultShortcuts: isMac ? ["Alt+Left"] : ["CommandOrControl+Left"],
|
||||||
description: "Move note up in hierarchy",
|
description: "Move note up in hierarchy",
|
||||||
scope: "note-tree"
|
scope: "note-tree"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
actionName: "moveNoteDownInHierarchy",
|
actionName: "moveNoteDownInHierarchy",
|
||||||
defaultShortcuts: ["CommandOrControl+Right"],
|
defaultShortcuts: isMac ? ["Alt+Right"] : ["CommandOrControl+Right"],
|
||||||
description: "Move note down in hierarchy",
|
description: "Move note down in hierarchy",
|
||||||
scope: "note-tree"
|
scope: "note-tree"
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user