Skip to content

Commit 770d6e7

Browse files
committed
fix: Bash completion for new subcommand
1 parent a83efbe commit 770d6e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

completions/choose.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ _choose() {
7272
if [[ "$i" -eq "$COMP_CWORD" ]]; then
7373
local cur="${COMP_WORDS[COMP_CWORD]}"
7474
# shellcheck disable=SC2207
75-
COMPREPLY=($(compgen -W "set launch get --help --version" -- "$cur"))
75+
COMPREPLY=($(compgen -W "set launch print --help --version" -- "$cur"))
7676
return
7777
fi
7878

0 commit comments

Comments
 (0)