Skip to content

Commit

Permalink
Merge pull request #1484 from rsteube/nix-path-nospace
Browse files Browse the repository at this point in the history
nix: ActionPaths - fix nospace
  • Loading branch information
rsteube authored Jan 15, 2023
2 parents 0e66bbb + 74b3a0f commit 726e2bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/actions/tools/nix/path.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func ActionPaths() carapace.Action {
)

if !strings.HasPrefix(c.CallbackValue, "channel:") {
batch = append(batch, carapace.ActionValues("channel:").NoSpace())
batch = append(batch, carapace.ActionValues("channel:").NoSpace(':'))
} else {
batch = append(batch, ActionRemoteChannels().Prefix("channel:"))
}
Expand Down

0 comments on commit 726e2bc

Please sign in to comment.