From 0a44048af87bc9a47ef1b523149dfa0af79b6547 Mon Sep 17 00:00:00 2001 From: Peter Tripp Date: Wed, 7 May 2025 15:13:50 +0000 Subject: [PATCH] Lowercase settings.json for vscode settings importer (#30131) Closes: https://github.com/zed-industries/zed/issues/30117 Release Notes: - N/A --- crates/paths/src/paths.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/paths/src/paths.rs b/crates/paths/src/paths.rs index d10fefbf6a58c1385cb615264bd082ac58b1815d..83bb7e14a0213b58cff1e22504d53d7a567cc3cf 100644 --- a/crates/paths/src/paths.rs +++ b/crates/paths/src/paths.rs @@ -414,7 +414,7 @@ pub fn local_vscode_launch_file_relative_path() -> &'static Path { /// Returns the path to the vscode user settings file pub fn vscode_settings_file() -> &'static PathBuf { static LOGS_DIR: OnceLock = OnceLock::new(); - let rel_path = "Code/User/Settings.json"; + let rel_path = "Code/User/settings.json"; LOGS_DIR.get_or_init(|| { if cfg!(target_os = "macos") { home_dir()