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.
1 parent 83db28a commit 1f618a5Copy full SHA for 1f618a5
src/apps/vscode_settings.py
@@ -87,10 +87,16 @@ def vscode_settings_path() -> Path:
87
xdg_config_home = Path(
88
os.environ.get("XDG_CONFIG_HOME", Path.home() / ".config")
89
)
90
+ flatpak_apps = Path.home() / ".var/app"
91
return pick_path(
92
[
93
xdg_config_home / "Code/User/settings.json",
94
xdg_config_home / "VSCodium/User/settings.json",
95
+ xdg_config_home / "Code - OSS/User/settings.json",
96
+ flatpak_apps / "com.visualstudio.code/config/Code/User/settings.json",
97
+ flatpak_apps / "com.vscodium.codium/config/VSCodium/User/settings.json",
98
+ flatpak_apps
99
+ / "com.visualstudio.code-oss/config/Code - OSS/User/settings.json",
100
]
101
102
0 commit comments