mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
Rename Selection.modifySelections to modifySelectedText
This commit is contained in:
@@ -44,16 +44,16 @@ class CompositeSeleciton
|
||||
@lastSelection().selectToScreenPosition(position)
|
||||
|
||||
selectRight: ->
|
||||
@modifySelections (selection) -> selection.selectRight()
|
||||
selection.selectRight() for selection in @getSelections()
|
||||
|
||||
selectLeft: ->
|
||||
@modifySelections (selection) -> selection.selectLeft()
|
||||
selection.selectLeft() for selection in @getSelections()
|
||||
|
||||
selectUp: ->
|
||||
@modifySelections (selection) -> selection.selectUp()
|
||||
selection.selectUp() for selection in @getSelections()
|
||||
|
||||
selectDown: ->
|
||||
@modifySelections (selection) -> selection.selectDown()
|
||||
selection.selectDown() for selection in @getSelections()
|
||||
|
||||
setBufferRange: (bufferRange) ->
|
||||
@lastSelection().setBufferRange(bufferRange)
|
||||
|
||||
Reference in New Issue
Block a user