diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-25 20:33:44 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-25 20:33:44 +0100 |
commit | 45a7512dea0599efaf96e8a2cad3fac7be61cf5d (patch) | |
tree | be0f50b1fe89625021111ad0d34555ef141d4146 /autoload/rust | |
parent | 81ada1101ecbb0bc6dbaeef42e997e62129b36cc (diff) | |
download | vim-polyglot-45a7512dea0599efaf96e8a2cad3fac7be61cf5d.tar.gz vim-polyglot-45a7512dea0599efaf96e8a2cad3fac7be61cf5d.zip |
Preserve loading order of plugins, fixes #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 a8f5bfa3..6c6fbe13 100644 --- a/autoload/rust.vim +++ b/autoload/rust.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('rust', expand('<sfile>:p')) +if !has_key(g:polyglot_is_disabled, 'rust') finish endif diff --git a/autoload/rust/debugging.vim b/autoload/rust/debugging.vim index 9096333b..d200e9fc 100644 --- a/autoload/rust/debugging.vim +++ b/autoload/rust/debugging.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('rust', expand('<sfile>:p')) +if !has_key(g:polyglot_is_disabled, 'rust') finish endif diff --git a/autoload/rust/delimitmate.vim b/autoload/rust/delimitmate.vim index 7d2d1817..25735f9c 100644 --- a/autoload/rust/delimitmate.vim +++ b/autoload/rust/delimitmate.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('rust', expand('<sfile>:p')) +if !has_key(g:polyglot_is_disabled, 'rust') finish endif diff --git a/autoload/rust/tags.vim b/autoload/rust/tags.vim index 8ffa4d51..1acbb5bb 100644 --- a/autoload/rust/tags.vim +++ b/autoload/rust/tags.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('rust', expand('<sfile>:p')) +if !has_key(g:polyglot_is_disabled, 'rust') finish endif diff --git a/autoload/rustfmt.vim b/autoload/rustfmt.vim index 81ebe56e..1d6f91ed 100644 --- a/autoload/rustfmt.vim +++ b/autoload/rustfmt.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('rust', expand('<sfile>:p')) +if !has_key(g:polyglot_is_disabled, 'rust') finish endif |