Tighten up restriction on SHELL match

This commit is contained in:
2022-04-30 14:16:54 -04:00
parent 56837b07d3
commit f3ef95f8cc

View File

@@ -102,7 +102,7 @@ func printCommandSuggestions(commands []*Command, writer io.Writer) {
if command.Hidden {
continue
}
if strings.Contains(os.Getenv("SHELL"), "zsh") {
if strings.HasSuffix(os.Getenv("SHELL"), "zsh") {
for _, name := range command.Names() {
_, _ = fmt.Fprintf(writer, "%s:%s\n", name, command.Usage)
}