diff --git a/src/app/editor.coffee b/src/app/editor.coffee index a6a1709c5..4a3f8cf22 100644 --- a/src/app/editor.coffee +++ b/src/app/editor.coffee @@ -146,6 +146,7 @@ class Editor extends View 'editor:select-to-end-of-word': @selectToEndOfWord 'editor:select-to-beginning-of-word': @selectToBeginningOfWord 'editor:select-to-beginning-of-next-word': @selectToBeginningOfNextWord + 'editor:select-to-first-character-of-line': @selectToFirstCharacterOfLine 'editor:add-selection-below': @addSelectionBelow 'editor:add-selection-above': @addSelectionAbove 'editor:select-line': @selectLine @@ -327,6 +328,9 @@ class Editor extends View # {Delegates to: EditSession.selectToBeginningOfLine} selectToBeginningOfLine: -> @activeEditSession.selectToBeginningOfLine() + # {Delegates to: EditSession.selectToFirstCharacterOfLine} + selectToFirstCharacterOfLine: -> @activeEditSession.selectToFirstCharacterOfLine() + # {Delegates to: EditSession.selectToEndOfLine} selectToEndOfLine: -> @activeEditSession.selectToEndOfLine()