File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ fn vals_for(o: &Arg) -> String {
178178 format ! (
179179 "$(compgen -W \" {}\" -- \" ${{cur}}\" )" ,
180180 vals. iter( )
181- . filter( |pv| pv. is_hide_set( ) )
181+ . filter( |pv| ! pv. is_hide_set( ) )
182182 . map( PossibleValue :: get_name)
183183 . collect:: <Vec <_>>( )
184184 . join( " " )
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ _my-app() {
9494 fi
9595 case " ${prev} " in
9696 --config)
97- COMPREPLY=($( compgen -W " " -- " ${cur} " ) )
97+ COMPREPLY=($( compgen -W " Lest quotes aren't escaped. " -- " ${cur} " ) )
9898 return 0
9999 ;;
100100 * )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ _my-app() {
2626 fi
2727 case " ${prev} " in
2828 --choice)
29- COMPREPLY=($( compgen -W " " -- " ${cur} " ) )
29+ COMPREPLY=($( compgen -W " bash fish zsh " -- " ${cur} " ) )
3030 return 0
3131 ;;
3232 --unknown)
You can’t perform that action at this time.
0 commit comments