2019-10-25 14:25:48 +02:00
|
|
|
" Create the `b:undo_ftplugin` variable if it doesn't exist
|
|
|
|
call ftplugined#check_undo_ft()
|
2019-10-25 14:15:56 +02:00
|
|
|
|
2019-10-17 11:23:22 +02:00
|
|
|
" Check tests too
|
|
|
|
let b:ale_rust_cargo_check_tests=1
|
2019-12-22 20:53:12 +01:00
|
|
|
let b:undo_ftplugin='|unlet! b:ale_rust_cargo_check_tests'
|
2019-10-17 11:23:22 +02:00
|
|
|
|
|
|
|
" Check examples too
|
|
|
|
let b:ale_rust_cargo_check_examples=1
|
2019-12-22 20:53:12 +01:00
|
|
|
let b:undo_ftplugin='|unlet! b:ale_rust_cargo_check_examples'
|
2019-10-17 11:23:22 +02:00
|
|
|
|
|
|
|
" Use clippy if it's available instead of just cargo check
|
|
|
|
let b:ale_rust_cargo_use_clippy=executable('cargo-clippy')
|
2019-12-22 20:53:12 +01:00
|
|
|
let b:undo_ftplugin='|unlet! b:ale_rust_cargo_use_clippy'
|
2019-10-17 11:23:22 +02:00
|
|
|
|
2019-10-09 17:09:29 +02:00
|
|
|
" Use rustfmt as ALE fixer for rust
|
|
|
|
let b:ale_fixers=[ 'rustfmt' ]
|
2019-12-22 20:53:12 +01:00
|
|
|
let b:undo_ftplugin.='|unlet! b:ale_fixers'
|
2019-12-22 20:56:52 +01:00
|
|
|
|
|
|
|
" Automatically format files when saving them
|
|
|
|
let b:ale_fix_on_save=1
|
|
|
|
let b:undo_ftplugin='|unlet! b:ale_lint_on_save'
|
2020-03-03 12:25:08 +01:00
|
|
|
|
|
|
|
" Change max length of a line to 99 for this buffer to match official guidelines
|
|
|
|
setlocal colorcolumn=99
|
|
|
|
let b:undo_ftplugin.='|setlocal colorcolumn<'
|