mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-28 23:06:51 +08:00
Don't use temporary file for rustfmt fixer
rustfmt normally acts on a file in place, and applies configuration from rustfmt.toml files according to the path of the file. Using a temporary file for rustfmt breaks this functionality, so removing the '%t' from the rustfmt command.
This commit is contained in:
@@ -18,9 +18,7 @@ Execute(The rustfmt callback should return the correct default values):
|
||||
|
||||
AssertEqual
|
||||
\ {
|
||||
\ 'read_temporary_file': 1,
|
||||
\ 'command': ale#Escape('xxxinvalid')
|
||||
\ . ' %t',
|
||||
\ 'command': ale#Escape('xxxinvalid'),
|
||||
\ },
|
||||
\ ale#fixers#rustfmt#Fix(bufnr(''))
|
||||
|
||||
@@ -30,9 +28,7 @@ Execute(The rustfmt callback should include custom rustfmt options):
|
||||
|
||||
AssertEqual
|
||||
\ {
|
||||
\ 'read_temporary_file': 1,
|
||||
\ 'command': ale#Escape('xxxinvalid')
|
||||
\ . ' ' . g:ale_rust_rustfmt_options
|
||||
\ . ' %t',
|
||||
\ . ' ' . g:ale_rust_rustfmt_options,
|
||||
\ },
|
||||
\ ale#fixers#rustfmt#Fix(bufnr(''))
|
||||
|
||||
Reference in New Issue
Block a user