I'm using gvim7.3 on windows7. When I type "[" or "(" or "{" vim will autoclose them like: "[ | ]" "( | )" "{ | }", "|" is the cursor position. But I want it autoclose without blanks like: "[|]" "(|)" "{|}", how to set the vim to do this? Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Just use
in vimrc. But make sure that there's no spaces after these strings like
It makes Vim insert additional spaces between brackets. |
|||
|
|
|
AutoClose.vim will close braces without putting spaces around the cursor. |
|||
|
|