Allow bash-completion to work with full-path executable

This commit is contained in:
Anthony Fok 2016-02-08 02:29:17 +08:00 committed by Steve Francia
parent 1ef0913976
commit 65a708cee0

View file

@ -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