Provide scan() delegation in editSession

This commit is contained in:
Ben Ogle
2013-09-25 11:02:29 -07:00
parent 238939e738
commit 04f0bf0244

View File

@@ -377,6 +377,9 @@ class EditSession
# {Delegates to: TextBuffer.lineLengthForRow}
lineLengthForBufferRow: (row) -> @buffer.lineLengthForRow(row)
# {Delegates to: TextBuffer.scan}
scan: (args...) -> @buffer.scan(args...)
# {Delegates to: TextBuffer.scanInRange}
scanInBufferRange: (args...) -> @buffer.scanInRange(args...)