diff --git a/src/atom/editor.coffee b/src/atom/editor.coffee index e849f41b7..2817230aa 100644 --- a/src/atom/editor.coffee +++ b/src/atom/editor.coffee @@ -350,6 +350,7 @@ class Editor extends View moveCursorUp: -> @compositeCursor.moveUp() moveCursorDown: -> @compositeCursor.moveDown() moveCursorRight: -> @compositeCursor.moveRight() + getCursors: -> @compositeCursor.getCursors() moveCursorLeft: -> @compositeCursor.moveLeft() setCursorScreenPosition: (position) -> @compositeCursor.setScreenPosition(position) getCursorScreenPosition: -> @compositeCursor.getCursor().getScreenPosition()