mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 19:47:41 +03:00
31 lines
603 B
Objective-C
31 lines
603 B
Objective-C
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@protocol NeoVimUiBridgeProtocol;
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NeoVimAgent : NSObject
|
|
|
|
@property (nonatomic, weak) id <NeoVimUiBridgeProtocol> bridge;
|
|
|
|
- (instancetype)initWithUuid:(NSString *)uuid;
|
|
- (void)cleanUp;
|
|
- (void)establishLocalServer;
|
|
|
|
- (void)vimInput:(NSString *)string;
|
|
- (void)vimInputMarkedText:(NSString *_Nonnull)markedText;
|
|
- (void)deleteCharacters:(NSInteger)count;
|
|
- (void)forceRedraw;
|
|
- (void)resizeToWidth:(int)width height:(int)height;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|