We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
complete -C
SSIA. Broken by 95eef92, but I guess this is something to fix in __load_completion.
__load_completion
See debug trace.
echo "$BASH_VERSION"
(IFS=.; echo "${BASH_COMPLETION_VERSINFO[*]}")
$ vault + local cmd=vault + __load_completion vault [...] + compfile=/home/scop/Documents/code/bash-completion/completions/_vault + [[ -d /home/scop/Documents/code/bash-completion/completions/_vault ]] + [[ -e /home/scop/Documents/code/bash-completion/completions/_vault ]] + . /home/scop/Documents/code/bash-completion/completions/_vault /usr/bin/vault ++ type /usr/bin/vault ++ complete -C '"/usr/bin/vault" 2>/dev/null' /usr/bin/vault ++ complete -p /usr/bin/vault + compspec='complete -C '\''"/usr/bin/vault" 2>/dev/null'\'' /usr/bin/vault' + extspecs=() + local -a extspecs + [[ -n '' ]] + [[ vault != */* ]] + complete -p vault + extspecs+=("$origcmd") + (( 1 != 0 )) + complete -C ''\''"/usr/bin/vault"' '2>/dev/null'\''' /usr/bin/vault vault + return 0 + return 124 bash: command substitution: line 1: unexpected EOF while looking for matching `'' bash: command substitution: line 2: syntax error: unexpected end of file $ complete -p vault + complete -p vault complete -C ''\''"/usr/bin/vault"' vault
The text was updated successfully, but these errors were encountered:
fix(__load_completion): quoted compspec for variants
7537362
Closes #995
fix(__load_completion): quoted compspec for variants (#1008)
0a2443e
* fix(__load_completion): quoted compspec for variants Closes #995 Co-authored-by: Koichi Murase <myoga.murase@gmail.com>
Successfully merging a pull request may close this issue.
Describe the bug
SSIA. Broken by 95eef92, but I guess this is something to fix in
__load_completion
.To reproduce
See debug trace.
Expected behavior
Versions (please complete the following information)
echo "$BASH_VERSION"
:(IFS=.; echo "${BASH_COMPLETION_VERSINFO[*]}")
:Additional context
Debug trace
The text was updated successfully, but these errors were encountered: