mirror of
https://github.com/leafOfTree/vim-vue-plugin.git
synced 2025-12-07 13:14:34 +08:00
20 lines
615 B
VimL
20 lines
615 B
VimL
if exists("b:did_ftplugin") | finish | endif
|
|
let b:did_ftplugin = 1
|
|
|
|
if !has('nvim')
|
|
setlocal matchpairs+=<:>
|
|
endif
|
|
|
|
if exists("loaded_matchit")
|
|
let b:match_ignorecase = 1
|
|
let b:match_words = '<:>,' .
|
|
\ '<\@<=[ou]l\>[^>]*\%(>\|$\):<\@<=li\>:<\@<=/[ou]l>,' .
|
|
\ '<\@<=dl\>[^>]*\%(>\|$\):<\@<=d[td]\>:<\@<=/dl>,' .
|
|
\ '<\@<=\([^/][^ \t>]*\)[^>]*\%(>\|$\):<\@<=/\1>'
|
|
endif
|
|
|
|
" Indent correctly with template string for vim-javascript/builtin
|
|
" indentexpr
|
|
let b:syng_str = '^\%(.*template\)\@!.*string\|special'
|
|
let b:syng_strcom = '^\%(.*template\)\@!.*string\|comment\|regex\|special\|doc'
|