Lowercase settings.json for vscode settings importer (#30131)

Closes: https://github.com/zed-industries/zed/issues/30117

Release Notes:

- N/A
This commit is contained in:
Peter Tripp 2025-05-07 15:13:50 +00:00 committed by GitHub
parent a4aa446a20
commit 0a44048af8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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<PathBuf> = 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()