mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Set/get text using edit session instead of buffer
This commit is contained in:
@@ -621,11 +621,11 @@ class Editor extends View
|
||||
# Public: Replaces the current 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.
|
||||
#
|
||||
# Returns a {String}.
|
||||
getText: -> @getBuffer().getText()
|
||||
getText: -> @activeEditSession.getText()
|
||||
# Public: Retrieves the current buffer's file path.
|
||||
#
|
||||
# Returns a {String}.
|
||||
|
||||
Reference in New Issue
Block a user