functions() { typeset -f "$@"; }
j() { jobs; }
- has_completion() { return 0; }
if [ -z "$BASH_COMPLETION_COMPAT_DIR" ]; then
if [ -d /usr/share/bash-completion -a -r /usr/share/bash-completion/bash_completion ]; then
+ _BASH_COMPLETIONS_DIR=/usr/share/bash-completion/completions
. /usr/share/bash-completion/bash_completion
- has_completion() { [ -r /usr/share/bash-completion/completions/$1 -o -n "complete -p $1 2>/dev/null" ]; }
elif [ -r /etc/bash_completion ]; then
+ _BASH_COMPLETIONS_DIR=/etc/bash_completion.d
. /etc/bash_completion
- has_completion() { [ -r /etc/bash_completion.d/$1 -o -n "complete -p $1 2>/dev/null" ]; }
elif [ -d /etc/bash_completion.d ]; then
+ _BASH_COMPLETIONS_DIR=/etc/bash_completion.d
for _compf in /etc/bash_completion.d/*; do
. $_compf
done
- 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
+ _BASH_COMPLETIONS_DIR=/usr/local/etc/bash_completion.d
for _compf in /usr/local/etc/bash_completion.d/*; do
. $_compf
done
- 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
fi
+ has_completion() {
+ [ -n "$_BASH_COMPLETIONS_DIR" -a -d "$_BASH_COMPLETIONS_DIR" -a -r "$_BASH_COMPLETIONS_DIR/$1" ] ||
+ complete -p $1 >/dev/null 2>&1
+ }
+
for cmd in builtin cgmem_nice command dbus-launch exec \
killall man nice nohup pidof pidOf KillAll pgrep pkill psg pswg \
run-all-hosts su sudo time whence whereis which xargs; do
delegate_completion ssh s
delegate_completion wget wget-m wget-wrapper ww
- unset has_completion delegate_completion
-
complete -A job bg fg j jobs wait
complete -A variable -A function unset
+ unset _BASH_COMPLETIONS_DIR has_completion delegate_completion
if [ -d "$HOME/lib/config" ]; then
complete -W "`cd \"$HOME/lib/config\" && echo *`" include