diff --git a/Tree manipulation.md b/Tree manipulation.md new file mode 100644 index 0000000..918b71a --- /dev/null +++ b/Tree manipulation.md @@ -0,0 +1,22 @@ +This page describes how you can manipulate the note tree - specifically moving notes. + +## Drag and drop + +You can manipulate the tree simply by dragging and dropping notes as you can see in the demo: + +[[gifs/drag-and-drop.gif]] + +## Keyboard manipulation + +Trilium provides fast keyboard based manipulation with following shortcuts: + +* ```SHIFT-UP``` and ```SHIFT-DOWN``` - move note up or down in the order +* ```SHIFT-LEFT``` - move note upwards in the hierarchy by changing a note's parent to note's parent's parent. +* ```SHIFT-RIGHT``` - move note downwards in the hierarchy by setting parent to the note currently above (this is a bit hard to explain - it's best to see a demo or try it for yourself) +* ```LEFT``` and ```RIGHT``` expands and collapses a sub-tree + +[[gifs/move-note-with-keyboard.gif]] + +## Context menu + +You can also move notes with familiar cut & paste from context menu or associated keyboard shortcuts ```CTRL-X``` (cut) and ```CTRL-V``` (paste). \ No newline at end of file diff --git a/gifs/drag-and-drop.gif b/gifs/drag-and-drop.gif new file mode 100644 index 0000000..dbffae5 Binary files /dev/null and b/gifs/drag-and-drop.gif differ diff --git a/gifs/move-note-with-keyboard.gif b/gifs/move-note-with-keyboard.gif new file mode 100644 index 0000000..4f42279 Binary files /dev/null and b/gifs/move-note-with-keyboard.gif differ