2016-06-04 00:43:39 +03:00
|
|
|
/**
|
|
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
|
|
* See LICENSE
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "NeoVimXpc.h"
|
|
|
|
|
2016-06-05 10:49:14 +03:00
|
|
|
@protocol NeoVimUiBridgeProtocol;
|
2016-06-04 10:51:57 +03:00
|
|
|
|
2016-06-04 00:43:39 +03:00
|
|
|
@interface NeoVimXpcImpl : NSObject <NeoVimXpc>
|
|
|
|
|
2016-06-06 19:25:03 +03:00
|
|
|
- (instancetype _Nonnull)initWithNeoVimUi:(id<NeoVimUiBridgeProtocol> _Nonnull)ui;
|
2016-06-05 10:49:14 +03:00
|
|
|
|
2016-06-07 19:48:59 +03:00
|
|
|
- (void)probe;
|
|
|
|
|
2016-06-06 19:25:03 +03:00
|
|
|
- (void)vimInput:(NSString * _Nonnull)input;
|
2016-06-04 10:51:57 +03:00
|
|
|
|
2016-06-08 19:17:12 +03:00
|
|
|
- (void)debugScreenLines;
|
|
|
|
|
2016-06-04 00:43:39 +03:00
|
|
|
@end
|