mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 03:25:03 +03:00
21 lines
314 B
Objective-C
21 lines
314 B
Objective-C
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
@import Foundation;
|
|
|
|
|
|
@interface NSObject (NeoVimServer)
|
|
|
|
@property (readonly, nonnull) const char *cdesc;
|
|
|
|
@end
|
|
|
|
@interface NSString (NeoVimServer)
|
|
|
|
@property (readonly, nonnull) const char *cstr;
|
|
@property (readonly) NSUInteger clength;
|
|
|
|
@end
|