mirror of
https://github.com/zadam/trilium.git
synced 2025-11-18 03:00:41 +01:00
changed note selection in tree using keyboard - now only sibling nodes are selected
This commit is contained in:
@@ -104,7 +104,7 @@ const DEFAULT_KEYBOARD_ACTIONS = [
|
||||
{
|
||||
actionName: "EditNoteTitle",
|
||||
defaultShortcuts: ["Enter"],
|
||||
description: "Edit active note title"
|
||||
description: "Jump from tree to the note detail and edit title"
|
||||
},
|
||||
{
|
||||
actionName: "EditBranchPrefix",
|
||||
@@ -117,7 +117,7 @@ const DEFAULT_KEYBOARD_ACTIONS = [
|
||||
},
|
||||
{
|
||||
actionName: "MoveNotesTo",
|
||||
defaultShortcuts: ["CommandOrControl+Shift+C"]
|
||||
defaultShortcuts: ["CommandOrControl+Shift+X"]
|
||||
},
|
||||
|
||||
{
|
||||
|
||||
@@ -264,7 +264,6 @@ async function saveLinks(note, content) {
|
||||
if (note.type === 'text') {
|
||||
content = findImageLinks(content, foundLinks);
|
||||
content = findInternalLinks(content, foundLinks);
|
||||
content = findExternalLinks(content, foundLinks);
|
||||
}
|
||||
else if (note.type === 'relation-map') {
|
||||
findRelationMapLinks(content, foundLinks);
|
||||
|
||||
Reference in New Issue
Block a user