mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
20 lines
424 B
Objective-C
20 lines
424 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;
|
|
|
|
- (void)sendMessageWithId:(NeoVimServerMsgId)msgid;
|
|
- (void)sendMessageWithId:(NeoVimServerMsgId)msgid data:(NSData *)data;
|
|
- (void)notifyReadiness;
|
|
|
|
@end
|