2011-05-06 00:41:05 +02:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# FILE: compleat.plugin.zsh
|
|
|
|
# DESCRIPTION: oh-my-zsh plugin file.
|
2011-07-18 02:28:50 +02:00
|
|
|
# AUTHOR: Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
# VERSION: 1.0.1
|
2011-05-06 00:41:05 +02:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
if (( ${+commands[compleat]} )); then
|
2011-07-18 02:28:50 +02:00
|
|
|
compleat_setup="${commands[compleat]:h:h}/share/compleat-1.0/compleat_setup"
|
2011-05-06 00:41:05 +02:00
|
|
|
|
2011-07-18 02:28:50 +02:00
|
|
|
if [[ -f "$compleat_setup" ]]; then
|
2011-05-06 00:41:05 +02:00
|
|
|
if ! bashcompinit >/dev/null 2>&1; then
|
2011-07-18 02:28:50 +02:00
|
|
|
autoload -Uz bashcompinit && bashcompinit
|
2011-05-06 00:41:05 +02:00
|
|
|
fi
|
|
|
|
|
2011-07-18 02:28:50 +02:00
|
|
|
source "$compleat_setup"
|
|
|
|
unset compleat_setup
|
2011-05-06 00:41:05 +02:00
|
|
|
fi
|
|
|
|
fi
|
2011-07-18 02:28:50 +02:00
|
|
|
|