mirror of
https://github.com/zadam/trilium.git
synced 2025-01-19 21:50:43 +08:00
removed ctrl+shift+left, ctrl+shift+right because of conflict with standard keyboard mapping, close #25
This commit is contained in:
parent
873ea67e9c
commit
bc4aa3e40a
1 changed files with 0 additions and 18 deletions
|
@ -54,24 +54,6 @@ $(document).bind('keydown', 'ctrl+f', () => {
|
|||
}
|
||||
});
|
||||
|
||||
$(document).bind('keydown', "ctrl+shift+left", () => {
|
||||
const node = noteTree.getCurrentNode();
|
||||
node.navigate($.ui.keyCode.LEFT, true);
|
||||
|
||||
$("#note-detail").focus();
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
$(document).bind('keydown', "ctrl+shift+right", () => {
|
||||
const node = noteTree.getCurrentNode();
|
||||
node.navigate($.ui.keyCode.RIGHT, true);
|
||||
|
||||
$("#note-detail").focus();
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
$(document).bind('keydown', "ctrl+shift+up", () => {
|
||||
const node = noteTree.getCurrentNode();
|
||||
node.navigate($.ui.keyCode.UP, true);
|
||||
|
|
Loading…
Reference in a new issue