Remove defunct ‘editor:move-to-previous-word’ command

The method this command calls was removed a very long time ago. Use
‘editor:move-to-previous-word-boundary’ instead.

Fixes atom/command-palette#41
This commit is contained in:
Nathan Sobo
2015-05-20 19:47:15 +02:00
parent 37f8059249
commit d75d202d33

View File

@@ -247,7 +247,6 @@ atom.commands.add 'atom-text-editor', stopEventPropagation(
'core:select-up': -> @selectUp()
'core:select-down': -> @selectDown()
'core:select-all': -> @selectAll()
'editor:move-to-previous-word': -> @moveToPreviousWord()
'editor:select-word': -> @selectWordsContainingCursors()
'editor:consolidate-selections': (event) -> event.abortKeyBinding() unless @consolidateSelections()
'editor:move-to-beginning-of-next-paragraph': -> @moveToBeginningOfNextParagraph()