mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 19:05:59 +01:00
ctrl-a selects all nodes at the current level (without children)
This commit is contained in:
@@ -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());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user