Skip to content

Commit

Permalink
Merge pull request #18394 from Wilfred/pretty_print_status
Browse files Browse the repository at this point in the history
internal: Pretty-print Config in status command
  • Loading branch information
Veykril authored Oct 24, 2024
2 parents 40492e1 + 909144f commit 3f6b0fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rust-analyzer/src/handlers/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ pub(crate) fn handle_analyzer_status(
format_to!(buf, "{}", crate::version());

buf.push_str("\nConfiguration: \n");
format_to!(buf, "{:?}", snap.config);
format_to!(buf, "{:#?}", snap.config);

Ok(buf)
}
Expand Down

0 comments on commit 3f6b0fa

Please sign in to comment.