diff options
Diffstat (limited to 'autoload/rustfmt.vim')
-rw-r--r-- | autoload/rustfmt.vim | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/autoload/rustfmt.vim b/autoload/rustfmt.vim index 2e2a10da..81ebe56e 100644 --- a/autoload/rustfmt.vim +++ b/autoload/rustfmt.vim @@ -1,11 +1,6 @@ -let s:base = expand("<sfile>:h:h") -let Filter = { _, v -> stridx(v, s:base) == -1 && stridx(v, $VIMRUNTIME) == -1 && v !~ "after" } -let files = filter(globpath(&rtp, 'autoload/rustfmt.vim', 1, 1), Filter) -if len(files) > 0 - exec 'source ' . files[0] +if !polyglot#util#IsEnabled('rust', expand('<sfile>:p')) finish endif -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'rust') == -1 " Author: Stephen Sugden <stephen@stephensugden.com> " @@ -267,5 +262,3 @@ endfunction " vim: set et sw=4 sts=4 ts=8: - -endif |