mirror of
https://github.com/atom/atom.git
synced 2026-01-24 14:28:14 -05:00
Rename navigateLeft to moveLeft
This commit is contained in:
@@ -64,5 +64,5 @@ class Editor extends Template
|
||||
deleteChar: ->
|
||||
@aceEditor.remove 'right'
|
||||
|
||||
|
||||
|
||||
moveLeft: ->
|
||||
@aceEditor.navigateLeft()
|
||||
|
||||
@@ -26,6 +26,6 @@ module.exports =
|
||||
MoveLeft: class
|
||||
execute: (editor) ->
|
||||
{column, row} = editor.getCursor()
|
||||
editor.navigateLeft() if column > 0
|
||||
editor.moveLeft() if column > 0
|
||||
|
||||
isComplete: -> true
|
||||
|
||||
Reference in New Issue
Block a user