mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-23 15:11:33 +08:00
19 lines
633 B
VimL
19 lines
633 B
VimL
""
|
|
" @section lang#xml, layer-lang-xml
|
|
" @parentsection layers
|
|
" When editing an xml file, the omni func is xmlcomplete#CompleteTags. You can
|
|
" read the documentation in autoload/xmlcomplete.vim in the vim or neovim
|
|
" runtime directory.
|
|
|
|
|
|
function! SpaceVim#layers#lang#xml#plugins() abort
|
|
let plugins = []
|
|
call add(plugins,['Valloric/MatchTagAlways', { 'on_ft' : ['html' , 'xhtml' , 'xml' , 'jinja']}])
|
|
call add(plugins,['sukima/xmledit', { 'on_ft' : ['html' , 'xhtml' , 'xml' , 'jinja']}])
|
|
return plugins
|
|
endfunction
|
|
|
|
function! SpaceVim#layers#lang#xml#config() abort
|
|
|
|
endfunction
|