mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 22:54:58 +00:00
Try to find rustfmt in more places
This commit is contained in:
parent
f5584668db
commit
9617bb4f07
4 changed files with 7 additions and 1 deletions
|
@ -41,6 +41,7 @@ ra_text_edit = { path = "../ra_text_edit" }
|
|||
vfs = { path = "../vfs" }
|
||||
vfs-notify = { path = "../vfs-notify" }
|
||||
ra_cfg = { path = "../ra_cfg"}
|
||||
ra_toolchain = { path = "../ra_toolchain" }
|
||||
|
||||
# This should only be used in CLI
|
||||
ra_db = { path = "../ra_db" }
|
||||
|
|
|
@ -650,7 +650,7 @@ pub(crate) fn handle_formatting(
|
|||
|
||||
let mut rustfmt = match &snap.config.rustfmt {
|
||||
RustfmtConfig::Rustfmt { extra_args } => {
|
||||
let mut cmd = process::Command::new("rustfmt");
|
||||
let mut cmd = process::Command::new(ra_toolchain::rustfmt());
|
||||
cmd.args(extra_args);
|
||||
if let Some(&crate_id) = crate_ids.first() {
|
||||
// Assume all crates are in the same edition
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue