mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-27 15:53:31 +03:00
20 lines
287 B
C
20 lines
287 B
C
|
/**
|
||
|
* Tae Won Ha - http://taewon.de - @hataewon
|
||
|
* See LICENSE
|
||
|
*/
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
|
||
|
@interface NSObject (NeoVimServer)
|
||
|
|
||
|
@property (readonly, nonnull) const char *cdesc;
|
||
|
|
||
|
@end
|
||
|
|
||
|
@interface NSString (NeoVimServer)
|
||
|
|
||
|
@property (readonly, nonnull) const char *cstr;
|
||
|
|
||
|
@end
|