mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
22 lines
519 B
Objective-C
22 lines
519 B
Objective-C
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
@import Foundation;
|
|
|
|
#import "NeoVimMsgIds.h"
|
|
|
|
|
|
@interface NeoVimServer : NSObject
|
|
|
|
- (instancetype)initWithLocalServerName:(NSString *)localServerName
|
|
remoteServerName:(NSString *)remoteServerName
|
|
nvimArgs:(NSArray<NSString *> *)nvimArgs;
|
|
|
|
- (void)sendMessageWithId:(NeoVimServerMsgId)msgid;
|
|
- (void)sendMessageWithId:(NeoVimServerMsgId)msgid data:(NSData *)data;
|
|
- (void)notifyReadiness;
|
|
|
|
@end
|