diff options
Diffstat (limited to 'autoload/xml/aria.vim')
-rw-r--r-- | autoload/xml/aria.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/autoload/xml/aria.vim b/autoload/xml/aria.vim index 5e642e1d..40fbfc69 100644 --- a/autoload/xml/aria.vim +++ b/autoload/xml/aria.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 + " Vim completion for WAI-ARIA data file " Language: HTML + WAI-ARIA " Maintainer: othree <othree@gmail.com> @@ -457,5 +459,3 @@ let g:xmldata_aria = { \ 'default_role': default_role, \ 'vimariaattrinfo': aria_attributes_value \ } - -endif |