diff options
Diffstat (limited to 'autoload/htmlcomplete.vim')
-rw-r--r-- | autoload/htmlcomplete.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/autoload/htmlcomplete.vim b/autoload/htmlcomplete.vim index 68a80384..f58793a2 100644 --- a/autoload/htmlcomplete.vim +++ b/autoload/htmlcomplete.vim @@ -1,3 +1,5 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1 + " Vim completion script " Language: HTML and XHTML " Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl ) @@ -837,3 +839,5 @@ function! htmlcomplete#CheckDoctype() " {{{ endfunction " }}} " vim:set foldmethod=marker: + +endif |