prezto_config/modules/compleat/init.zsh

21 lines
406 B
Bash
Raw Normal View History

2012-02-01 05:37:51 +01:00
#
# Loads Compleat completions.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
if (( ${+commands[compleat]} )); then
compleat_setup="${commands[compleat]:h:h}/share/compleat-1.0/compleat_setup"
if [[ -f "$compleat_setup" ]]; then
2011-07-28 22:41:39 +02:00
if autoloadable bashcompinit; then
autoload -Uz bashcompinit && bashcompinit
fi
source "$compleat_setup"
unset compleat_setup
fi
fi