mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-28 08:13:17 +03:00
22 lines
406 B
Objective-C
22 lines
406 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)vimInputMarkedText:(NSString *_Nonnull)markedText;
|
|
|
|
@end
|