mirror of
https://github.com/atom/atom.git
synced 2026-02-12 23:55:10 -05:00
removed unnecessary + operator
This commit is contained in:
@@ -921,7 +921,7 @@ class TextEditor extends Model
|
||||
# Any folds in the text that is moved will need to be re-created.
|
||||
rangesToRefold =
|
||||
@outermostFoldsInBufferRowRange(linesRange.start.row, linesRange.end.row).map (fold) ->
|
||||
fold.getBufferRange().translate([+insertDelta, 0])
|
||||
fold.getBufferRange().translate([insertDelta, 0])
|
||||
|
||||
# Make sure the inserted text doesn't go into an existing fold
|
||||
if fold = @displayBuffer.largestFoldStartingAtBufferRow(followingBufferRow)
|
||||
|
||||
Reference in New Issue
Block a user