1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-10-27 18:34:58 +03:00
vimr/NeoVimServer/NeoVimServer.h
Tae Won Ha 4699e3db35
Forward almost every keystroke to neovim
- we probably still have to fine-tune this.
2016-07-12 17:58:35 +02:00

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