mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 03:25:03 +03:00
Reformat
This commit is contained in:
parent
6b43c75bae
commit
fc0815f9f6
@ -7,15 +7,12 @@ 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 static func == (lhs: Buffer, rhs: Buffer) -> Bool { lhs.handle == rhs.handle }
|
||||
|
||||
public let handle: Int
|
||||
|
||||
@ -23,8 +20,7 @@ public final class RxNeovimApi {
|
||||
}
|
||||
|
||||
public struct Window: Equatable {
|
||||
|
||||
public static func ==(lhs: Window, rhs: Window) -> Bool { lhs.handle == rhs.handle }
|
||||
public static func == (lhs: Window, rhs: Window) -> Bool { lhs.handle == rhs.handle }
|
||||
|
||||
public let handle: Int
|
||||
|
||||
@ -32,8 +28,7 @@ public final class RxNeovimApi {
|
||||
}
|
||||
|
||||
public struct Tabpage: Equatable {
|
||||
|
||||
public static func ==(lhs: Tabpage, rhs: Tabpage) -> Bool { lhs.handle == rhs.handle }
|
||||
public static func == (lhs: Tabpage, rhs: Tabpage) -> Bool { lhs.handle == rhs.handle }
|
||||
|
||||
public let handle: Int
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user