dotar/vim/snippets/objc/objc.snippet
2011-11-17 16:00:49 -06:00

15 lines
156 B
Plaintext
Executable File

@interface ${1:`Filename('', 'object')`} : ${2:NSObject}
{
}
@end
@implementation $1
- (id) init
{
if (self = [super init])
{${3}
}
return self
}
@end