Rename navigateLeft to moveLeft

This commit is contained in:
Corey Johnson & Nathan Sobo
2012-01-13 10:46:33 -08:00
parent d3d832a740
commit 257ae7f67d
2 changed files with 3 additions and 3 deletions

View File

@@ -64,5 +64,5 @@ class Editor extends Template
deleteChar: ->
@aceEditor.remove 'right'
moveLeft: ->
@aceEditor.navigateLeft()

View File

@@ -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