1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-26 15:25:14 +03:00
vimr/NvimView/NvimServer/NvimServer.h

23 lines
528 B
C
Raw Normal View History

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
#import <Foundation/Foundation.h>
2016-10-22 18:25:43 +03:00
2018-01-21 16:16:07 +03:00
#import "SharedTypes.h"
2017-12-20 23:35:36 +03:00
@interface NvimServer : NSObject
- (instancetype)initWithLocalServerName:(NSString *)localServerName
remoteServerName:(NSString *)remoteServerName
nvimArgs:(NSArray<NSString *> *)nvimArgs;
2018-01-23 22:40:20 +03:00
- (void)sendMessageWithId:(NvimServerMsgId)msgid;
2018-05-13 10:29:15 +03:00
- (void)sendMessageWithId:(NvimServerMsgId)msgid data:(CFDataRef)data;
- (void)notifyReadiness;
@end