Add a missing option to scripts/bash-completion.sh.

This commit is contained in:
Username404-59 2021-02-26 12:47:31 +01:00
parent fe8be54005
commit 20907ad833
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ _ybconAutoComplete() {
COMPREPLY=()
current="${COMP_WORDS[COMP_CWORD]}"
previous="${COMP_WORDS[COMP_CWORD-1]}"
options='--help --printresult -p'
options='-h -p --help --printresult'
if [[ "${current}" == -* ]]; then
COMPREPLY=("$(compgen -W "$options" -- "$current")")
return 0