mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 02:45:54 +01:00
added possibility to search by attached script returning note ids + some refactorings
This commit is contained in:
@@ -138,7 +138,7 @@ function registerEntrypoints() {
|
||||
|
||||
// FIXME: do we really need these at this point?
|
||||
utils.bindShortcut("ctrl+shift+up", () => {
|
||||
const node = treeService.getCurrentNode();
|
||||
const node = treeService.getActiveNode();
|
||||
node.navigate($.ui.keyCode.UP, true);
|
||||
|
||||
$("#note-detail-text").focus();
|
||||
@@ -147,7 +147,7 @@ function registerEntrypoints() {
|
||||
|
||||
// FIXME: do we really need these at this point?
|
||||
utils.bindShortcut("ctrl+shift+down", () => {
|
||||
const node = treeService.getCurrentNode();
|
||||
const node = treeService.getActiveNode();
|
||||
node.navigate($.ui.keyCode.DOWN, true);
|
||||
|
||||
$("#note-detail-text").focus();
|
||||
|
||||
Reference in New Issue
Block a user