1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-27 15:53:31 +03:00
vimr/NeoVimXpc/NeoVimXpcImpl.h
2016-06-18 23:14:49 +02:00

23 lines
375 B
Objective-C

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
@import Foundation;
#import "NeoVimXpc.h"
@protocol NeoVimUiBridgeProtocol;
@interface NeoVimXpcImpl : NSObject <NeoVimXpc>
- (instancetype _Nonnull)initWithNeoVimUi:(id<NeoVimUiBridgeProtocol> _Nonnull)ui;
- (void)probe;
- (void)vimInput:(NSString * _Nonnull)input;
- (void)debugScreenLines;
@end