Fix duplicate completion of existing flag

This commit is contained in:
Yogesh Lonkar
2019-03-20 21:34:56 +05:30
parent 58a072d573
commit fb1421d903
2 changed files with 30 additions and 15 deletions

View File

@@ -11,9 +11,6 @@ _cli_bash_autocomplete() {
else
opts=$( ${COMP_WORDS[@]:0:$COMP_CWORD} --generate-bash-completion )
fi
if [[ "$opts1" == "$cur1" ]]; then
return 0
fi
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
}