From 9705aa338448bb7b2b797f09866b7e14247bf0ea Mon Sep 17 00:00:00 2001 From: Raphael Amorim Date: Mon, 3 Feb 2025 14:43:46 -0300 Subject: [PATCH] fix: generated completion invalid for fish shell (#837) --- filter/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filter/options.go b/filter/options.go index 07c50ce..e63644b 100644 --- a/filter/options.go +++ b/filter/options.go @@ -15,7 +15,7 @@ type Options struct { Limit int `help:"Maximum number of options to pick" default:"1" group:"Selection"` NoLimit bool `help:"Pick unlimited number of options (ignores limit)" group:"Selection"` SelectIfOne bool `help:"Select the given option if there is only one" group:"Selection"` - Selected []string `help:"Options that should start as selected (selects all if given '*')" default:"" env:"GUM_FILTER_SELECTED"` + Selected []string `help:"Options that should start as selected (selects all if given *)" default:"" env:"GUM_FILTER_SELECTED"` ShowHelp bool `help:"Show help keybinds" default:"true" negatable:"" env:"GUM_FILTER_SHOW_HELP"` Strict bool `help:"Only returns if anything matched. Otherwise return Filter" negatable:"" default:"true" group:"Selection"` SelectedPrefix string `help:"Character to indicate selected items (hidden if limit is 1)" default:" ◉ " env:"GUM_FILTER_SELECTED_PREFIX"`