mirror of
https://github.com/spf13/cobra
synced 2024-11-24 14:47:12 +00:00
Allow bash-completion to work with full-path executable
This commit is contained in:
parent
04d02e3184
commit
2a20bcba18
1 changed files with 7 additions and 1 deletions
|
@ -183,7 +183,11 @@ __handle_command()
|
|||
if [[ -n ${last_command} ]]; then
|
||||
next_command="_${last_command}_${words[c]//:/__}"
|
||||
else
|
||||
next_command="_${words[c]//:/__}"
|
||||
if [[ $c -eq 0 ]]; then
|
||||
next_command="_$(basename ${words[c]//:/__})"
|
||||
else
|
||||
next_command="_${words[c]//:/__}"
|
||||
fi
|
||||
fi
|
||||
c=$((c+1))
|
||||
__debug "${FUNCNAME}: looking for ${next_command}"
|
||||
|
@ -201,6 +205,8 @@ __handle_word()
|
|||
__handle_flag
|
||||
elif __contains_word "${words[c]}" "${commands[@]}"; then
|
||||
__handle_command
|
||||
elif [[ $c -eq 0 ]] && __contains_word "$(basename ${words[c]})" "${commands[@]}"; then
|
||||
__handle_command
|
||||
else
|
||||
__handle_noun
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue