diff options
Diffstat (limited to '')
-rw-r--r-- | syntax/html/aria.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/syntax/html/aria.vim b/syntax/html/aria.vim index 78106c17..a22c013b 100644 --- a/syntax/html/aria.vim +++ b/syntax/html/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 syntax file " Language: WAI-ARIA " Maintainer: othree <othree@gmail.com> @@ -77,3 +74,4 @@ syn match htmlArg contained "\<aria-\%(\|labelledby\|owns\|posinset\|setsize\ syn match htmlArg contained "\<aria-\%(\|colcount\|colindex\|colspan\)\>" syn match htmlArg contained "\<aria-\%(\|rowcount\|rowindex\|rowspan\)\>" +endif |