mirror of
https://github.com/zadam/trilium.git
synced 2024-11-10 17:13:45 +08:00
ctrl-a selects all nodes at the current level (without children)
This commit is contained in:
parent
274bb32696
commit
3f976a3821
1 changed files with 7 additions and 0 deletions
|
@ -452,6 +452,13 @@ const noteTree = (function() {
|
|||
"alt+-": node => {
|
||||
collapseTree(node);
|
||||
},
|
||||
"ctrl+a": node => {
|
||||
for (const child of node.getParent().getChildren()) {
|
||||
child.setSelected(true);
|
||||
}
|
||||
|
||||
return false;
|
||||
},
|
||||
"ctrl+c": () => {
|
||||
contextMenu.copy(getSelectedNodes());
|
||||
|
||||
|
|
Loading…
Reference in a new issue