Skip to content

Commit

Permalink
env: added completion for CARAPACE_UNFILTERED
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Jan 25, 2025
1 parent f979dff commit ad93831
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkg/actions/env/carapace.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ func init() {
"CARAPACE_NOSPACE": "nospace suffixes",
"CARAPACE_SANDBOX": "mock context for sandbox tests",
"CARAPACE_TOOLTIP": "enable tooltip style",
"CARAPACE_UNFILTERED": "skip the final filtering step",
"CARAPACE_ZSH_HASH_DIRS": "zsh hash directories",
// carapace-bin
"CARAPACE_EXCLUDES": "internal completers to exclude",
Expand All @@ -41,8 +42,9 @@ func init() {
"CARAPACE_NOSPACE": carapace.ActionValuesDescribed(
"*", "match all",
).UniqueList(""),
"CARAPACE_SANDBOX": carapace.ActionValues(),
"CARAPACE_TOOLTIP": _bool,
"CARAPACE_SANDBOX": carapace.ActionValues(),
"CARAPACE_TOOLTIP": _bool,
"CARAPACE_UNFILTERED": _bool,
// carapace-bin
"CARAPACE_EXCLUDES": carapace.Batch(
carapace.ActionCallback(func(c carapace.Context) carapace.Action {
Expand Down

0 comments on commit ad93831

Please sign in to comment.