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?
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?