summaryrefslogtreecommitdiffstats
path: root/after/ftplugin/html.vim
diff options
context:
space:
mode:
Diffstat (limited to 'after/ftplugin/html.vim')
-rw-r--r--after/ftplugin/html.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/after/ftplugin/html.vim b/after/ftplugin/html.vim
index 50cdb2ae..6b0b48a2 100644
--- a/after/ftplugin/html.vim
+++ b/after/ftplugin/html.vim
@@ -1,4 +1,6 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1
+if !polyglot#util#IsEnabled('html5', expand('<sfile>:p'))
+ finish
+endif
" Maintainer: othree <othree@gmail.com>
" URL: http://github.com/othree/html5.vim
@@ -9,5 +11,3 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1
" setlocal iskeyword+=-
setlocal commentstring=<!--%s-->
-
-endif