diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-25 21:08:27 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-25 21:08:27 +0100 |
commit | 28388008327aacfc48db3c31f415564d93cd983f (patch) | |
tree | e493e1b9e6c700a6378311074b3dfab0eb3edb09 /after/syntax/html | |
parent | ba3fe9e1ae6b2198a152cfa6a357cadc8c04dd14 (diff) | |
download | vim-polyglot-28388008327aacfc48db3c31f415564d93cd983f.tar.gz vim-polyglot-28388008327aacfc48db3c31f415564d93cd983f.zip |
Fix conditions, #608
Diffstat (limited to 'after/syntax/html')
-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 |
3 files changed, 3 insertions, 3 deletions
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 |