diff --git a/botanjs/src/Components/Vim/Controls.js b/botanjs/src/Components/Vim/Controls.js index 1173343..4f982d6 100644 --- a/botanjs/src/Components/Vim/Controls.js +++ b/botanjs/src/Components/Vim/Controls.js @@ -415,6 +415,7 @@ case H: this.__cMoveX( -1 ); break; // Left case L: this.__cMoveX( 1 ); break; // Right case K: this.__cMoveY( -1 ); break; // Up + case ENTER: case J: this.__cMoveY( 1 ); break; // Down case CTRL + F: // Page Down @@ -650,6 +651,7 @@ this.__divedCCmd.dispose(); this.__cMovement = false; this.__divedCCmd = null; + return; } if( e.canceled ) return;