/** * Tae Won Ha - http://taewon.de - @hataewon * See LICENSE */ @import Cocoa; @protocol NeoVimUiBridgeProtocol; @class NeoVimBuffer; NS_ASSUME_NONNULL_BEGIN @interface NeoVimAgent : NSObject @property (nonatomic, weak) id bridge; - (instancetype)initWithUuid:(NSString *)uuid; - (void)quit; - (void)establishLocalServer; - (void)vimCommand:(NSString *)string; - (void)vimInput:(NSString *)string; - (void)vimInputMarkedText:(NSString *_Nonnull)markedText; - (void)deleteCharacters:(NSInteger)count; - (void)resizeToWidth:(int)width height:(int)height; - (bool)hasDirtyDocs; - (NSArray *)escapedFileNames:(NSArray *)fileNames; - (NSArray *)buffers; @end NS_ASSUME_NONNULL_END