diff options
Diffstat (limited to '')
-rw-r--r-- | after/syntax/html.vim | 2 | ||||
-rw-r--r-- | after/syntax/html/aria.vim | 2 | ||||
-rw-r--r-- | after/syntax/html/electron.vim | 2 | ||||
-rw-r--r-- | after/syntax/html/rdfa.vim | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/after/syntax/html.vim b/after/syntax/html.vim index 56ba064c..9dec611e 100644 --- a/after/syntax/html.vim +++ b/after/syntax/html.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'html5') +if has_key(g:polyglot_is_disabled, 'html5') finish endif diff --git a/after/syntax/html/aria.vim b/after/syntax/html/aria.vim index ed5a8383..b589cc5e 100644 --- a/after/syntax/html/aria.vim +++ b/after/syntax/html/aria.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'html5') +if has_key(g:polyglot_is_disabled, 'html5') finish endif diff --git a/after/syntax/html/electron.vim b/after/syntax/html/electron.vim index d7bfa90f..35aa1a1e 100644 --- a/after/syntax/html/electron.vim +++ b/after/syntax/html/electron.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'html5') +if has_key(g:polyglot_is_disabled, 'html5') finish endif diff --git a/after/syntax/html/rdfa.vim b/after/syntax/html/rdfa.vim index 529c2fcd..5554f12b 100644 --- a/after/syntax/html/rdfa.vim +++ b/after/syntax/html/rdfa.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'html5') +if has_key(g:polyglot_is_disabled, 'html5') finish endif |