diff --git a/src/atom/vim-mode/motions.coffee b/src/atom/vim-mode/motions.coffee index 1f374e30a..72c3f8738 100644 --- a/src/atom/vim-mode/motions.coffee +++ b/src/atom/vim-mode/motions.coffee @@ -17,7 +17,6 @@ class MoveLeft extends Motion class MoveRight extends Motion execute: -> {column, row} = @editor.getCursorPosition() - console.log @editor.getCurrentLine().length isOnLastCharachter = @editor.getCursorColumn() == @editor.getCurrentLine().length - 1 @editor.moveCursorRight() unless isOnLastCharachter