mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-01 01:32:04 +03:00
23 lines
528 B
Objective-C
23 lines
528 B
Objective-C
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "SharedTypes.h"
|
|
|
|
|
|
@interface NvimServer : NSObject
|
|
|
|
- (instancetype)initWithLocalServerName:(NSString *)localServerName
|
|
remoteServerName:(NSString *)remoteServerName
|
|
nvimArgs:(NSArray<NSString *> *)nvimArgs;
|
|
|
|
- (void)sendMessageWithId:(NvimServerMsgId)msgid;
|
|
|
|
- (void)sendMessageWithId:(NvimServerMsgId)msgid data:(CFDataRef)data;
|
|
- (void)notifyReadiness;
|
|
|
|
@end
|