auto-pairs icon indicating copy to clipboard operation
auto-pairs copied to clipboard

Vim plugin, insert or delete brackets, parens, quotes in pair

Results 116 auto-pairs issues
Sort by recently updated
recently updated
newest added

I am on NeoVim. Freshly installed the plugin. its not working. Is there anything that needs to go into the vimrc to make the plugin start?

By defining a movement parameter for AutoPairsFastWrap, we allow the user to define addition fast-wrap style mappings, for example: ``` inoremap =AutoPairsFastWrap("E") inoremap =AutoPairsFastWrap("$") ``` Whilst it might, in the...

g:AutoPairsIgnoreCharacters is a list that lets the user determine which characters escape automatic closing. By default, it equals ['\']

I haven't been able to find how to/if it's possible to make it put the open bracket on a new line for specific files, eg. C# files. This is quite...

When I have this (`|` means cursor position): ``` struct test { void f() {}| }; ``` And I press `` twice just to remove curly braces of `void f()`,...

I don't know if this is possible, but it would be great if auto-pairs also works when I use ipython or something else in terminal mode.

how can i make auto-pairs work with characters like “”, ‘’, «», ❨❩, ᔇᔅ etc? `autocmd BufEnter * let b:AutoPairs = {'«' : '»'}` and `autocmd BufEnter * let b:AutoPairs...

This is inspired by sublime text. Try it, it will make the closing pair, but not if you are inserting text. Is this possible?

``` add or delete pairs base on g:AutoPairs eg: au FileType html let b:AutoPairs = AutoPairsDefine({''}, ['{']) add pair and remove '{' for html file the pair implict start with...

Defaults do not change standard behavior. Non-default options fix some strange formatting behaviors on my end and allow for indentation on . Probably closes multiple bugs.