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.
23 lines
450 B
23 lines
450 B
# |
|
# Loads Compleat completions. |
|
# |
|
# Authors: |
|
# Sorin Ionescu <sorin.ionescu@gmail.com> |
|
# |
|
|
|
# Load dependencies. |
|
omodload 'completion' |
|
|
|
if (( ${+commands[compleat]} )); then |
|
compleat_setup="${commands[compleat]:h:h}/share/compleat-1.0/compleat_setup" |
|
|
|
if [[ -f "$compleat_setup" ]]; then |
|
if autoloadable bashcompinit; then |
|
autoload -Uz bashcompinit && bashcompinit |
|
fi |
|
|
|
source "$compleat_setup" |
|
unset compleat_setup |
|
fi |
|
fi |
|
|
|
|