You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
406 B
21 lines
406 B
13 years ago
|
#
|
||
|
# Loads Compleat completions.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||
|
#
|
||
14 years ago
|
|
||
|
if (( ${+commands[compleat]} )); then
|
||
14 years ago
|
compleat_setup="${commands[compleat]:h:h}/share/compleat-1.0/compleat_setup"
|
||
14 years ago
|
|
||
14 years ago
|
if [[ -f "$compleat_setup" ]]; then
|
||
13 years ago
|
if autoloadable bashcompinit; then
|
||
14 years ago
|
autoload -Uz bashcompinit && bashcompinit
|
||
14 years ago
|
fi
|
||
|
|
||
14 years ago
|
source "$compleat_setup"
|
||
|
unset compleat_setup
|
||
14 years ago
|
fi
|
||
|
fi
|
||
14 years ago
|
|