mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 05:53:45 +00:00
Merge pull request #18394 from Wilfred/pretty_print_status
internal: Pretty-print Config in status command
This commit is contained in:
commit
3f6b0fae83
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ pub(crate) fn handle_analyzer_status(
|
||||||
format_to!(buf, "{}", crate::version());
|
format_to!(buf, "{}", crate::version());
|
||||||
|
|
||||||
buf.push_str("\nConfiguration: \n");
|
buf.push_str("\nConfiguration: \n");
|
||||||
format_to!(buf, "{:?}", snap.config);
|
format_to!(buf, "{:#?}", snap.config);
|
||||||
|
|
||||||
Ok(buf)
|
Ok(buf)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue