Skip to content

Commit 763921b

Browse files
authored
feat: extend OverrideVSCodeConfigs for additional VS Code IDEs (coder#16654)
1 parent 6acc3a9 commit 763921b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

cli/gitauth/vscode.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ func OverrideVSCodeConfigs(fs afero.Fs) error {
3232
filepath.Join(xdg.DataHome, "code-server", "Machine", "settings.json"),
3333
// vscode-remote's default configuration path.
3434
filepath.Join(home, ".vscode-server", "data", "Machine", "settings.json"),
35+
// vscode-insiders' default configuration path.
36+
filepath.Join(home, ".vscode-insiders-server", "data", "Machine", "settings.json"),
37+
// cursor default configuration path.
38+
filepath.Join(home, ".cursor-server", "data", "Machine", "settings.json"),
39+
// windsurf default configuration path.
40+
filepath.Join(home, ".windsurf-server", "data", "Machine", "settings.json"),
41+
// vscodium default configuration path.
42+
filepath.Join(home, ".vscodium-server", "data", "Machine", "settings.json"),
3543
} {
3644
_, err := fs.Stat(configPath)
3745
if err != nil {

0 commit comments

Comments
 (0)