jiangmiao / auto-pairs

Vim plugin, insert or delete brackets, parens, quotes in pair
http://www.vim.org/scripts/script.php?script_id=3599
4.11k stars 373 forks source link

Ignore Fly Mode for a specific pair? #313

Open domi91c opened 3 years ago

domi91c commented 3 years ago

I've added the following so that a new line is added when I hit enter between a pair of HTML tags: autocmd FileType vue let b:AutoPairs = AutoPairsDefine({'>' : '<'}, [])

This works, but now when I type a < inside a Vue file, instead of inserting it jumps to the next <. Is it possible to prevent that feature, but only for this pair?