I'm trying to code some Objective-C in Vim and one thing I'm missing from Xcode is the ability to auto insert the left matching bracket.
Say if I have the following text:
NSString *string = [NSString alloc] init
and I insert ']' at the end of the row, then I want it to complete to:
NSString *string = [[NSString alloc] init]
Any ideas?
