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 /autoload/rust | |
parent | ba3fe9e1ae6b2198a152cfa6a357cadc8c04dd14 (diff) | |
download | vim-polyglot-28388008327aacfc48db3c31f415564d93cd983f.tar.gz vim-polyglot-28388008327aacfc48db3c31f415564d93cd983f.zip |
Fix conditions, #608
Diffstat (limited to '')
-rw-r--r-- | autoload/rust.vim | 2 | ||||
-rw-r--r-- | autoload/rust/debugging.vim | 2 | ||||
-rw-r--r-- | autoload/rust/delimitmate.vim | 2 | ||||
-rw-r--r-- | autoload/rust/tags.vim | 2 | ||||
-rw-r--r-- | autoload/rustfmt.vim | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/autoload/rust.vim b/autoload/rust.vim index 6c6fbe13..5b0cd64f 100644 --- a/autoload/rust.vim +++ b/autoload/rust.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'rust') +if has_key(g:polyglot_is_disabled, 'rust') finish endif diff --git a/autoload/rust/debugging.vim b/autoload/rust/debugging.vim index d200e9fc..7985c87c 100644 --- a/autoload/rust/debugging.vim +++ b/autoload/rust/debugging.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'rust') +if has_key(g:polyglot_is_disabled, 'rust') finish endif diff --git a/autoload/rust/delimitmate.vim b/autoload/rust/delimitmate.vim index 25735f9c..ecd7c28c 100644 --- a/autoload/rust/delimitmate.vim +++ b/autoload/rust/delimitmate.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'rust') +if has_key(g:polyglot_is_disabled, 'rust') finish endif diff --git a/autoload/rust/tags.vim b/autoload/rust/tags.vim index 1acbb5bb..f4830e28 100644 --- a/autoload/rust/tags.vim +++ b/autoload/rust/tags.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'rust') +if has_key(g:polyglot_is_disabled, 'rust') finish endif diff --git a/autoload/rustfmt.vim b/autoload/rustfmt.vim index 1d6f91ed..5dc682a5 100644 --- a/autoload/rustfmt.vim +++ b/autoload/rustfmt.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'rust') +if has_key(g:polyglot_is_disabled, 'rust') finish endif |