diff options
author | Shinya Ohyanagi <heavenshell.jp@gmail.com> | 2017-11-18 13:22:43 +0900 |
---|---|---|
committer | Shinya Ohyanagi <heavenshell.jp@gmail.com> | 2017-11-18 13:22:43 +0900 |
commit | b70a671d7e7c8b801f8a05210c71f7c9a8e48828 (patch) | |
tree | 0275c934ef287dd40ef68ebe1fbb5ed598802337 /src/console/components/console.js | |
parent | 9ce54583314444a7f6c41db731be5d58f669702a (diff) |
Fix drop <C-j>, <C-k> from cursor selector
Because these are not Vim's default behavior.
Diffstat (limited to 'src/console/components/console.js')
-rw-r--r-- | src/console/components/console.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/console/components/console.js b/src/console/components/console.js index 682d5dc..21439ef 100644 --- a/src/console/components/console.js +++ b/src/console/components/console.js @@ -78,7 +78,6 @@ export default class ConsoleComponent { this.selectNext(e); break; case KeyboardEvent.DOM_VK_N: - case KeyboardEvent.DOM_VK_J: if (e.ctrlKey) { this.selectNext(e); } @@ -87,7 +86,6 @@ export default class ConsoleComponent { this.selectPrev(e); break; case KeyboardEvent.DOM_VK_P: - case KeyboardEvent.DOM_VK_K: if (e.ctrlKey) { this.selectPrev(e); } |