1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-23 17:31:34 +08:00
SpaceVim/autoload/SpaceVim/layers/lang/xml.vim
2017-02-17 00:56:55 -05:00

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