1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-26 23:36:08 +03:00
vimr/NeoVimXpc/NeoVimXpcImpl.h

26 lines
524 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-07-02 22:38:52 +03:00
- (void)deleteCharacters:(NSInteger)count;
- (void)forceRedraw;
2016-06-04 10:51:57 +03:00
2016-07-04 20:36:37 +03:00
- (void)resizeToWidth:(int)width height:(int)height;
@end