We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dee7ffa commit 17e850eCopy full SHA for 17e850e
pkg/bridges/bash.go
@@ -67,7 +67,7 @@ func bashCompletionLocations() []string {
67
}
68
} else {
69
if dataHome, ok := os.LookupEnv("XDG_DATA_HOME"); ok {
70
- locations = append(locations, fmt.Sprintf("%v/.local/share/bash-completion/completions", dataHome))
+ locations = append(locations, fmt.Sprintf("%v/bash-completion/completions", dataHome))
71
} else if home, err := os.UserHomeDir(); err == nil {
72
locations = append(locations, fmt.Sprintf("%v/.local/share/bash-completion/completions", home))
73
0 commit comments