1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-25 23:02:35 +03:00

GH-666 Delete RowRun

This commit is contained in:
Tae Won Ha 2018-09-03 13:25:50 +02:00
parent b891fc45b2
commit 97e8fccf49

View File

@ -316,18 +316,6 @@ public class NvimView: NSView,
} }
// MARK: - Internal // MARK: - Internal
/// Contiguous piece of cells of a row that has the same attributes.
struct RowRun: CustomStringConvertible {
var row: Int
var range: CountableClosedRange<Int>
var attrs: OldCellAttributes
var description: String {
return "RowRun<\(row): \(range)\n\(attrs)>"
}
}
let bridge: UiBridge let bridge: UiBridge
let api = RxNeovimApi.Api() let api = RxNeovimApi.Api()