Eliminate 'move-cursor-to-next-word' command

We have move-to-end-of-word and move-to-beginning-of-word, which is what we use for the current keybindings.
This commit is contained in:
Corey Johnson & Nathan Sobo
2012-10-30 11:52:59 -06:00
parent 89ac3f1c82
commit 8c7152a59b
4 changed files with 0 additions and 35 deletions

View File

@@ -478,9 +478,6 @@ class EditSession
moveCursorToEndOfLine: ->
@moveCursors (cursor) -> cursor.moveToEndOfLine()
moveCursorToNextWord: ->
@moveCursors (cursor) -> cursor.moveToNextWord()
moveCursorToBeginningOfWord: ->
@moveCursors (cursor) -> cursor.moveToBeginningOfWord()