Fix VS Code settings file location on Linux (#31242)

Refs #30117

Release Notes:

- N/A
This commit is contained in:
ADmad 2025-05-26 21:28:03 +05:30 committed by GitHub
parent 29f0762b6c
commit 7e87916642
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -435,7 +435,7 @@ pub fn vscode_settings_file() -> &'static PathBuf {
.join("Library/Application Support")
.join(rel_path)
} else {
config_dir().join(rel_path)
home_dir().join(".config").join(rel_path)
}
})
}