How do I disable adding a matching open square bracket '[' character when typing a close square bracket ']'?
I've tried various combinations of the Smart Key options, and none of them do what I want. I am able to disable automatically adding a closing bracket ']' when I type an open bracket '[', but not the other way around.
Example:
I have the following line:
if ([myObject respondsToSelector:@selector(outline)])
and my cursor is between the ')' and ']' characters. When I type ']' this is what I get:
if ([myObject respondsToSelector:[@selector(outline) ]])
I expect that the existing ']' will be overwritten by the one I type, or at least that a new '[' will not be added.
I am using AppCode 1.6.2 and the IdeaVIM plugin.
Thank you!