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 /syntax/html | |
| parent | ba3fe9e1ae6b2198a152cfa6a357cadc8c04dd14 (diff) | |
| download | vim-polyglot-28388008327aacfc48db3c31f415564d93cd983f.tar.gz vim-polyglot-28388008327aacfc48db3c31f415564d93cd983f.zip | |
Fix conditions, #608
Diffstat (limited to '')
| -rw-r--r-- | syntax/html.vim | 2 | ||||
| -rw-r--r-- | syntax/htmldjango.vim | 2 | ||||
| -rw-r--r-- | syntax/htmlm4.vim | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/syntax/html.vim b/syntax/html.vim index ed3b61f1..37c03c45 100644 --- a/syntax/html.vim +++ b/syntax/html.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'html') +if has_key(g:polyglot_is_disabled, 'html') finish endif diff --git a/syntax/htmldjango.vim b/syntax/htmldjango.vim index c29c081e..d7060757 100644 --- a/syntax/htmldjango.vim +++ b/syntax/htmldjango.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'htmldjango') +if has_key(g:polyglot_is_disabled, 'htmldjango') finish endif diff --git a/syntax/htmlm4.vim b/syntax/htmlm4.vim index 415f7456..b2c8002a 100644 --- a/syntax/htmlm4.vim +++ b/syntax/htmlm4.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'htmlm4') +if has_key(g:polyglot_is_disabled, 'htmlm4') finish endif |
