1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 03:25:03 +03:00
This commit is contained in:
Tae Won Ha 2020-07-05 20:21:48 +02:00
parent 6b43c75bae
commit fc0815f9f6
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -7,14 +7,11 @@ import Foundation
import RxSwift
public final class RxNeovimApi {
public enum Event {
case error(msg: String)
}
public struct Buffer: Equatable {
public static func == (lhs: Buffer, rhs: Buffer) -> Bool { lhs.handle == rhs.handle }
public let handle: Int
@ -23,7 +20,6 @@ public final class RxNeovimApi {
}
public struct Window: Equatable {
public static func == (lhs: Window, rhs: Window) -> Bool { lhs.handle == rhs.handle }
public let handle: Int
@ -32,7 +28,6 @@ public final class RxNeovimApi {
}
public struct Tabpage: Equatable {
public static func == (lhs: Tabpage, rhs: Tabpage) -> Bool { lhs.handle == rhs.handle }
public let handle: Int