diff options
Diffstat (limited to 'ftplugin/html.vim')
-rw-r--r-- | ftplugin/html.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ftplugin/html.vim b/ftplugin/html.vim index 782d4015..87fed79d 100644 --- a/ftplugin/html.vim +++ b/ftplugin/html.vim @@ -1,5 +1,7 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1 - +if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'html5') != -1 + finish +endif + " Maintainer: othree <othree@gmail.com> " URL: http://github.com/othree/html5.vim " Last Change: 2014-05-02 @@ -9,5 +11,3 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1 " setlocal iskeyword+=- setlocal commentstring=<!--%s--> - -endif |