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 6607464 commit fa8307eCopy full SHA for fa8307e
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