mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-26 07:13:24 +03:00
2623b351c6
- add the NeoVimServer binary - we're on our way to remove the XPC service since only 1-to-1 correspondence possible between an XPC and the main app - NeoVimServer communicates with the main app via two CFMessagePorts - Use enums to distinguish between messages
17 lines
247 B
Swift
17 lines
247 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Foundation
|
|
|
|
public class NeoVim {
|
|
|
|
private let agent: NeoVimAgent
|
|
|
|
public init() {
|
|
let uuid = NSUUID().UUIDString
|
|
self.agent = NeoVimAgent(uuid: uuid)
|
|
}
|
|
}
|