Thanks to visit codestin.com Credit goes to github.com
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 6acc3a9 commit 763921bCopy full SHA for 763921b
cli/gitauth/vscode.go
@@ -32,6 +32,14 @@ func OverrideVSCodeConfigs(fs afero.Fs) error {
32
filepath.Join(xdg.DataHome, "code-server", "Machine", "settings.json"),
33
// vscode-remote's default configuration path.
34
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"),
43
} {
44
_, err := fs.Stat(configPath)
45
if err != nil {
0 commit comments