dotar/vim/snippets/objc/cat.snippet

7 lines
81 B
Plaintext
Raw Normal View History

2011-11-18 05:45:33 +08:00
@interface ${1:NSObject} (${2:Category})
@end
@implementation $1 ($2)
${3}
@end