mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-26 15:25:14 +03:00
9d491d5245
- use CFMessagePort
27 lines
591 B
Objective-C
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
|