CTRL+ENTER on note in tree pane switches to the editor

pull/255/head
azivner 2017-12-27 21:16:47 +07:00
parent de9bab1181
commit da2cd57428
1 changed files with 4 additions and 0 deletions

@ -4,6 +4,7 @@ const noteTree = (function() {
const treeEl = $("#tree");
const parentListEl = $("#parent-list");
const parentListListEl = $("#parent-list-list");
const noteDetailEl = $("#note-detail");
let startNotePath = null;
let notesTreeMap = {};
@ -453,6 +454,9 @@ const noteTree = (function() {
return false;
},
"ctrl+return": node => {
noteDetailEl.focus();
},
// code below shouldn't be necessary normally, however there's some problem with interaction with context menu plugin
// after opening context menu, standard shortcuts don't work, but they are detected here
// so we essentially takeover the standard handling with our implementation.