From 5e9ca9cf7763ad89921d161fa8fe9ede702a46b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maj=20Sokli=C4=8D?= Date: Thu, 22 Jan 2026 17:22:47 +0100 Subject: [PATCH] Support Insider variants of Code and VSCodium for settings.json import (#47247) Release Notes: - Import VS Code Insiders and VSCodium Insiders user settings (`settings.json`). Note: - If multiple VS Code-family installs have a `settings.json`, Zed selects the last matching path in its search order (so Insiders is preferred over stable when both exist). --- crates/paths/src/paths.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/paths/src/paths.rs b/crates/paths/src/paths.rs index a6aa8354b4661fbdf6a3360704d0fb16e5b80614..870e1e71c68abd09688cf9816967f7f7f2a60588 100644 --- a/crates/paths/src/paths.rs +++ b/crates/paths/src/paths.rs @@ -502,8 +502,10 @@ fn vscode_user_data_paths() -> Vec { // https://github.com/microsoft/vscode/blob/23e7148cdb6d8a27f0109ff77e5b1e019f8da051/src/vs/platform/environment/node/userDataPath.ts#L45 const VSCODE_PRODUCT_NAMES: &[&str] = &[ "Code", + "Code - Insiders", "Code - OSS", "VSCodium", + "VSCodium - Insiders", "Code Dev", "Code - OSS Dev", "code-oss-dev",