dot-files/vim/.vim/after/ftplugin/rust.vim
Bruno BELANYI 36faab278e [FIX][VIM] Set b:undo_ftplugin if not set
I hit the problem when loading a fugitive window, but this should be
done for all filetype plug-ins before trying to append to the variable.
2019-10-25 14:15:56 +02:00

20 lines
583 B
VimL

if !exists("b:undo_ftplugin")
let b:undo_ftplugin=''
endif
" Check tests too
let b:ale_rust_cargo_check_tests=1
let b:undo_ftplugin='|unlet b:ale_rust_cargo_check_tests'
" Check examples too
let b:ale_rust_cargo_check_examples=1
let b:undo_ftplugin='|unlet b:ale_rust_cargo_check_examples'
" Use clippy if it's available instead of just cargo check
let b:ale_rust_cargo_use_clippy=executable('cargo-clippy')
let b:undo_ftplugin='|unlet b:ale_rust_cargo_use_clippy'
" Use rustfmt as ALE fixer for rust
let b:ale_fixers=[ 'rustfmt' ]
let b:undo_ftplugin.='|unlet b:ale_fixers'