1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-28 08:13:17 +03:00
vimr/NeoVimXpc/NeoVimXpc.h

20 lines
465 B
C
Raw Normal View History

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
#import <Foundation/Foundation.h>
@protocol NeoVimXpc <NSObject>
2016-06-07 19:48:59 +03:00
/**
* It seems that the XPC service does not get instantiated as long as no actual calls are made. However, we want neovim
* run as soon as we establish the connection. To achieve this, the client can call -probe which does not call anything
* on neovim.
*/
- (void)probe;
2016-06-06 19:25:03 +03:00
- (void)vimInput:(NSString * _Nonnull)input;
@end