Fix drop <C-j>, <C-k> from cursor selector

Because these are not Vim's default behavior.
jh-changes
Shinya Ohyanagi 7 years ago
parent 9ce5458331
commit b70a671d7e
  1. 2
      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);
}