ervandew / supertab

Perform all your vim insert mode completions with Tab
3.18k stars 214 forks source link

Prevent completion after parenthesis #192

Open hiqsol opened 7 years ago

hiqsol commented 7 years ago

I want SuperTab don't complete after all parenthesis: [, ], (, ), {, }

This doesn't help:

let g:SuperTabNoCompleteAfter = ['^', '\s', '"', "'", ',', '.', ':', '[', ']', '(', ')', '{', '}']

This too:

let g:SuperTabNoCompleteAfter = ['^', '\s', '"', "'", ',', '.', ':', '\[', '\]', '\(', '\)', '\{', '\}']