mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 11:35:35 +03:00
47567f002b
- AppCode seems to be happier
22 lines
526 B
Objective-C
22 lines
526 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:(NSData *)data;
|
|
- (void)notifyReadiness;
|
|
|
|
@end
|