diff options
Diffstat (limited to '')
-rw-r--r-- | autoload/xml/aria.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/autoload/xml/aria.vim b/autoload/xml/aria.vim index 40fbfc69..6d2d1a01 100644 --- a/autoload/xml/aria.vim +++ b/autoload/xml/aria.vim @@ -1,7 +1,4 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'html5') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1 " Vim completion for WAI-ARIA data file " Language: HTML + WAI-ARIA " Maintainer: othree <othree@gmail.com> @@ -459,3 +456,4 @@ let g:xmldata_aria = { \ 'default_role': default_role, \ 'vimariaattrinfo': aria_attributes_value \ } +endif |