20 lines
446 B
VimL
20 lines
446 B
VimL
|
if exists('b:did_ftplugin')
|
||
|
finish
|
||
|
endif
|
||
|
|
||
|
runtime! ftplugin/html.vim
|
||
|
|
||
|
setlocal path+=layouts,resources,content,archetypes,static,data,layouts/_default,layouts/partials
|
||
|
setlocal suffixesadd=.html
|
||
|
|
||
|
setlocal commentstring={{/*%s*/}}
|
||
|
|
||
|
if exists('loaded_matchit')
|
||
|
let b:match_words=b:match_words.','
|
||
|
\.'\<\%(define\|block\|with\|range\|if\)\>:'
|
||
|
\.'\<else\>:'
|
||
|
\.'\<end\>,'
|
||
|
endif
|
||
|
|
||
|
let b:undo_ftplugin = 'setlocal com< path<'
|