mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
formatting keyboard shortcuts, prefix in clones
parent
469ebea54e
commit
2283281f17
@ -49,6 +49,12 @@ You can also notice how after creating the clone, all clones are highlighted. Th
|
|||||||
|
|
||||||
When you click on the clone, you can also see in the bottom of the left pane list of all locations of the clone which allows you to switch easily between them.
|
When you click on the clone, you can also see in the bottom of the left pane list of all locations of the clone which allows you to switch easily between them.
|
||||||
|
|
||||||
|
## Prefix
|
||||||
|
|
||||||
|
Since notes can be categorized into multiple places, it's important to choose name which fits into both (all) locations.
|
||||||
|
In some cases this isn't possible so Trilium provides "tree prefix" which is shown before the note name in the tree and as such provides kind of context.
|
||||||
|
Prefix is location specific so it's displayed only in the tree pane.
|
||||||
|
|
||||||
## Deleting notes/clones
|
## Deleting notes/clones
|
||||||
|
|
||||||
With clones it might not be immediately obvious how deleting works.
|
With clones it might not be immediately obvious how deleting works.
|
||||||
|
@ -1,52 +1,53 @@
|
|||||||
This is supposed to be a complete list of keyboard shortcuts:
|
This is supposed to be a complete list of keyboard shortcuts. Note that some of these may work only in certain contexts (e.g. in tree pane or note editor).
|
||||||
|
|
||||||
## Note navigation
|
## Note navigation
|
||||||
|
|
||||||
* CTRL+UP, CTRL+DOWN - go up/down in the list of notes
|
* ```CTRL+UP```, ```CTRL+DOWN``` - go up/down in the list of notes
|
||||||
* CTRL+LEFT, CTRL+RIGHT - collapse/expand node
|
* ```CTRL+LEFT```, ```CTRL+RIGHT``` - collapse/expand node
|
||||||
* ALT+LEFT, ALT+RIGHT - go back / forwards in the history
|
* ```ALT+LEFT```, ```ALT+RIGHT``` - go back / forwards in the history
|
||||||
* CTRL+J - show "Jump to" dialog
|
* ```CTRL+J``` - show "Jump to" dialog
|
||||||
* CTRL+E - show "Recent notes" dialog
|
* ```CTRL+E``` - show "Recent notes" dialog
|
||||||
* CTRL+. - scroll to current note (useful when you scroll away from your note or your focus is currently in the editor)
|
* ```CTRL+.``` - scroll to current note (useful when you scroll away from your note or your focus is currently in the editor)
|
||||||
* ALT+C - collapse whole note tree
|
* ```ALT+C``` - collapse whole note tree
|
||||||
* ALT+- (alt with minus sign) - collapse sub-tree (if some subtree takes too much space on tree pane you can collapse it)
|
* ```ALT+-``` (alt with minus sign) - collapse sub-tree (if some subtree takes too much space on tree pane you can collapse it)
|
||||||
|
|
||||||
See demo of some of these features in [[note navigation|Note navigation]].
|
See demo of some of these features in [[note navigation|Note navigation]].
|
||||||
|
|
||||||
## Creating notes
|
## Creating notes
|
||||||
|
|
||||||
* CTRL+O - creates new note after the current note
|
* ```CTRL+O``` - creates new note after the current note
|
||||||
* CTRL+P - creates new sub-note into current note
|
* ```CTRL+P``` - creates new sub-note into current note
|
||||||
* F2 - edit prefix of current note clone
|
* ```F2``` - edit prefix of current note clone
|
||||||
|
|
||||||
## Moving / cloning notes
|
## Moving / cloning notes
|
||||||
|
|
||||||
* SHIFT+UP, SHIFT+DOWN - move note up/down in the note list
|
* ```SHIFT+UP```, ```SHIFT+DOWN``` - move note up/down in the note list
|
||||||
* SHIFT+LEFT - move note up in the note tree
|
* ```SHIFT+LEFT``` - move note up in the note tree
|
||||||
* SHIFT+RIGHT - move note down in the note tree
|
* ```SHIFT+RIGHT``` - move note down in the note tree
|
||||||
* CTRL+C - copies current note into clipboard (used for [[cloning|Cloning notes]])
|
* ```CTRL+C``` - copies current note into clipboard (used for [[cloning|Cloning notes]])
|
||||||
* CTRL+X - cuts current note into clipboard (used for moving notes)
|
* ```CTRL+X``` - cuts current note into clipboard (used for moving notes)
|
||||||
* CTRL+V - pastes note as sub-note into current note (which is either move or clone depending on whether it was copied or cut into clipboard)
|
* ```CTRL+V``` - pastes note as sub-note into current note (which is either move or clone depending on whether it was copied or cut into clipboard)
|
||||||
* CTRL+DEL - delete note / sub-tree
|
* ```DEL``` / ```CTRL+DEL``` - delete note / sub-tree. Just ```DELETE``` works in tree pane, ```CTRL-DEL``` works globally.
|
||||||
|
|
||||||
## Editing notes
|
## Editing notes
|
||||||
|
|
||||||
* CTRL+K - create / edit external link
|
* ```CTRL+K``` - create / edit external link
|
||||||
* CTRL+L - create internal (note) link
|
* ```CTRL+L``` - create internal (note) link
|
||||||
* ALT+T - inserts current date and time at caret position
|
* ```ALT+T``` - inserts current date and time at caret position
|
||||||
|
|
||||||
## Runtime shortcuts
|
## Runtime shortcuts
|
||||||
|
|
||||||
These are hooked in Electron to be similar to native browser keyboard shortcuts.
|
These are hooked in Electron to be similar to native browser keyboard shortcuts.
|
||||||
|
|
||||||
* F5, CTRL-R - reloads trilium frontend
|
* ```F5```, ```CTRL-R``` - reloads trilium frontend
|
||||||
* CTRL+SHIFT+I - show developer tools
|
* ```CTRL+SHIFT+I``` - show developer tools
|
||||||
* CTRL+F - show search dialog
|
* ```CTRL+F``` - show search dialog
|
||||||
|
|
||||||
## Other
|
## Other
|
||||||
|
|
||||||
* ALT+O - show SQL console (use only if you know what you're doing)
|
* ```CTRL+U``` - show note source (read only)
|
||||||
* ALT+M - distraction-free mode - display only note editor, everything else is hidden
|
* ```ALT+O``` - show SQL console (use only if you know what you're doing)
|
||||||
* ALT+H - show note history
|
* ```ALT+M``` - distraction-free mode - display only note editor, everything else is hidden
|
||||||
* ALT+S - show search
|
* ```ALT+H``` - show note history
|
||||||
* ALT+R - show recent changes dialog
|
* ```ALT+S``` - toggle search form in tree pane
|
||||||
|
* ```ALT+R``` - show recent changes dialog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user