Mercurial > vim
view runtime/ftplugin/vue.vim @ 29663:5009fd4e3de6
Added tag v9.0.0171 for changeset b03c47618895fa9b5e712709457fa17b691e2ab9
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 08 Aug 2022 17:15:04 +0200 |
parents | 912224cab37f |
children |
line wrap: on
line source
" Vim filetype plugin file " Language: vue if exists("b:did_ftplugin") | finish | endif let b:did_ftplugin = 1 " Make sure the continuation lines below do not cause problems in " compatibility mode. let s:save_cpo = &cpo set cpo-=C " Copied from ftplugin/html.vim " Original thanks to Johannes Zellner and Benji Fisher. 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 " Restore the saved compatibility options. let &cpo = s:save_cpo unlet s:save_cpo