mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-27 15:53:31 +03:00
18 lines
318 B
Objective-C
18 lines
318 B
Objective-C
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "NeoVimXpc.h"
|
|
|
|
@protocol NeoVimUiBridgeProtocol;
|
|
|
|
@interface NeoVimXpcImpl : NSObject <NeoVimXpc>
|
|
|
|
- (instancetype)initWithNeoVimUi:(id<NeoVimUiBridgeProtocol>)ui;
|
|
|
|
- (void)vimInput:(NSString *)input;
|
|
|
|
@end
|