mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
31 lines
829 B
Objective-C
31 lines
829 B
Objective-C
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NeoVimBuffer : NSObject <NSCoding>
|
|
|
|
@property (nonatomic, readonly) NSUInteger handle;
|
|
@property (nonatomic, retain, nullable) NSString *fileName;
|
|
@property (nonatomic, readonly, getter=isDirty) bool dirty;
|
|
@property (nonatomic, readonly, getter=isCurrent) bool current;
|
|
@property (nonatomic, readonly, getter=isTransient) bool transient;
|
|
|
|
- (instancetype)initWithHandle:(NSUInteger)handle
|
|
fileName:(NSString * _Nullable)fileName
|
|
dirty:(bool)dirty
|
|
current:(bool)current;
|
|
|
|
- (instancetype)initWithCoder:(NSCoder *)coder;
|
|
- (void)encodeWithCoder:(NSCoder *)coder;
|
|
|
|
- (NSString *)description;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|