1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-27 15:53:31 +03:00
vimr/NeoVimXpc/NeoVimXpcImpl.h

22 lines
406 B
C
Raw Normal View History

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