dotar/vim/snippets/objc/cat.snippet

7 lines
81 B
Plaintext
Raw Normal View History

2011-11-17 15:45:33 -06:00
@interface ${1:NSObject} (${2:Category})
@end
@implementation $1 ($2)
${3}
@end