Set/get text using edit session instead of buffer

This commit is contained in:
Kevin Sawicki 2013-04-23 08:54:43 -07:00
parent 2d897ba415
commit 1ccf026a83

View File

@ -621,11 +621,11 @@ class Editor extends View
# Public: Replaces the current buffer contents. # Public: Replaces the current buffer contents.
# #
# text - A {String} containing the new buffer contents. # text - A {String} containing the new buffer contents.
setText: (text) -> @getBuffer().setText(text) setText: (text) -> @activeEditSession.setText(text)
# Public: Retrieves the current buffer contents. # Public: Retrieves the current buffer contents.
# #
# Returns a {String}. # Returns a {String}.
getText: -> @getBuffer().getText() getText: -> @activeEditSession.getText()
# Public: Retrieves the current buffer's file path. # Public: Retrieves the current buffer's file path.
# #
# Returns a {String}. # Returns a {String}.