Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Jan 16, 2024
1 parent 36a919a commit 53a2556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/actions/bridge/bash.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ func ActionBash(command ...string) carapace.Action {
return carapace.ActionExecCommand("bash", "--rcfile", configPath, "-i", "-c", bashSnippet, strings.Join(args, " "))(func(output []byte) carapace.Action {
lines := strings.Split(string(output), "\n")
return carapace.ActionValues(lines[:len(lines)-1]...).StyleF(style.ForPath)
}).NoSpace([]rune("/=@:.,")...) // TODO check compopt for nospace
}).Invoke(c).ToA().NoSpace([]rune("/=@:.,")...) // TODO check compopt for nospace
})
}

0 comments on commit 53a2556

Please sign in to comment.