mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-26 15:25:14 +03:00
07ac09e95f
- live resizing is not yet activated, but can be easily done - @autoreleasepool-block for each UI callback and for each key input is ugly...
26 lines
524 B
Objective-C
26 lines
524 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;
|
|
- (void)deleteCharacters:(NSInteger)count;
|
|
- (void)forceRedraw;
|
|
|
|
- (void)resizeToWidth:(int)width height:(int)height;
|
|
|
|
@end
|