mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-12 21:43:49 -05:00
10 lines
255 B
VimL
10 lines
255 B
VimL
if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'cjsx') != -1
|
|
finish
|
|
endif
|
|
|
|
if exists("loaded_matchit")
|
|
let b:match_ignorecase = 0
|
|
let b:match_words = '(:),\[:\],{:},<:>,' .
|
|
\ '<\@<=\([^/][^ \t>]*\)[^>]*\%(>\|$\):<\@<=/\1>'
|
|
endif
|