mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-25 06:43:24 +03:00
b3b47668e9
- embed libnvim in an XPC-service - send some inputs to neovim and log the UI callbacks
14 lines
203 B
Objective-C
14 lines
203 B
Objective-C
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "NeoVimXpc.h"
|
|
|
|
@interface NeoVimXpcImpl : NSObject <NeoVimXpc>
|
|
|
|
- (instancetype)init;
|
|
|
|
@end
|