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.
2 parents 954fb1d + 094cecd commit 7c11399Copy full SHA for 7c11399
crates/rust-analyzer/src/bin/main.rs
@@ -193,7 +193,7 @@ fn run_server() -> anyhow::Result<()> {
193
let mut is_visual_studio_code = false;
194
if let Some(client_info) = client_info {
195
tracing::info!("Client '{}' {}", client_info.name, client_info.version.unwrap_or_default());
196
- is_visual_studio_code = client_info.name == "Visual Studio Code";
+ is_visual_studio_code = client_info.name.starts_with("Visual Studio Code");
197
}
198
199
let workspace_roots = workspace_folders
0 commit comments