From 0c99131807db3cfbd340fdfe9e9c3737c971b5cc Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 20 Jul 2020 01:17:05 +0300 Subject: [PATCH] .shellrc: Check static completion in addition to dynamic --- .shellrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.shellrc b/.shellrc index 8876507..0549c17 100644 --- a/.shellrc +++ b/.shellrc @@ -70,20 +70,20 @@ if test -n "$BASH_VERSION"; then if [ -z "$BASH_COMPLETION_COMPAT_DIR" ]; then if [ -d /usr/share/bash-completion -a -r /usr/share/bash-completion/bash_completion ]; then . /usr/share/bash-completion/bash_completion - has_completion() { [ -r /usr/share/bash-completion/completions/$1 ]; } + has_completion() { [ -r /usr/share/bash-completion/completions/$1 -o -n "complete -p $1 2>/dev/null" ]; } elif [ -r /etc/bash_completion ]; then . /etc/bash_completion - has_completion() { [ -r /etc/bash_completion.d/$1 ]; } + has_completion() { [ -r /etc/bash_completion.d/$1 -o -n "complete -p $1 2>/dev/null" ]; } elif [ -d /etc/bash_completion.d ]; then for _compf in /etc/bash_completion.d/*; do . $_compf done - has_completion() { [ -r /etc/bash_completion.d/$1 ]; } + has_completion() { [ -r /etc/bash_completion.d/$1 -o -n "complete -p $1 2>/dev/null" ]; } elif [ -d /usr/local/etc/bash_completion.d ]; then for _compf in /usr/local/etc/bash_completion.d/*; do . $_compf done - has_completion() { [ -r /usr/local/etc/bash_completion.d/$1 ]; } + has_completion() { [ -r /usr/local/etc/bash_completion.d/$1 -o -n "complete -p $1 2>/dev/null" ]; } else echo "Unknown OS type, cannot source bash_completion" >&2 fi -- 2.39.2