vim-autoclose icon indicating copy to clipboard operation
vim-autoclose copied to clipboard

This plugin for Vim enable an auto-close chars feature for you. For instance if you type an '(', ``autoclose`` will automatically insert a ')' and put the cursor between than.

Results 42 vim-autoclose issues
Sort by recently updated
recently updated
newest added

Not a vimscript expert, but I thought this was useful.

This is a really smart plugin of Vim, and just works as other IDEs. But it disables the Chinese input method,that I can type any Chinese character in Vim. It...

There is a newline inserted if two curly braces (`{{`) are typed and results the following ``` { | } ``` This helps while editing javascript files, but creates problem...

More specifically: getting out of autocompletion using ESC removes the autocompleted text if autoclose is loaded.

I prefer to have a space between my brackets and their contents in almost all cases. AutoClose works great for this, excepting one minor niggling little detail. Without AutoClose, I...

To fix issues with escaping when using of some characters in insert mode for putty terminals.

it does not seem to work inside html tags: ``` html { ``` the { is never closed.

4c4902f7196ee3ef0049a705fe93cc91cc0d4d6a improved the on deciding when to close a pair. The choice that closing pairs is OK before any `b:AutoClosePairs` value means that pairs will close ahead of strings. For...

I was following "Learn Vimscript the Hard Way", which had an instruction on setting `:iabbrev adn and` so that every time you type `adn`, it is corrected to and, but...