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