We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e651da9 commit 8c6dd09Copy full SHA for 8c6dd09
src/tools/rust-analyzer/crates/rust-analyzer/src/handlers/request.rs
@@ -111,6 +111,13 @@ pub(crate) fn handle_analyzer_status(
111
.status(file_id)
112
.unwrap_or_else(|_| "Analysis retrieval was cancelled".to_owned()),
113
);
114
+
115
+ buf.push_str("\nVersion: \n");
116
+ format_to!(buf, "{}", crate::version());
117
118
+ buf.push_str("\nConfiguration: \n");
119
+ format_to!(buf, "{:?}", snap.config);
120
121
Ok(buf)
122
}
123
0 commit comments