1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-26 15:25:14 +03:00
vimr/NeoVimXpc/NeoVimXpcImpl.h
2016-07-09 14:05:04 +02:00

27 lines
591 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;
- (NSData *)handleMessageWithId:(SInt32)msgid data:(NSData *)data;
- (void)deleteCharacters:(NSInteger)count;
- (void)forceRedraw;
- (void)resizeToWidth:(int)width height:(int)height;
@end