Sorin Ionescu
14 years ago
1 changed files with 8 additions and 8 deletions
@ -1,20 +1,20 @@ |
|||||||
# ------------------------------------------------------------------------------ |
# ------------------------------------------------------------------------------ |
||||||
# FILE: compleat.plugin.zsh |
# FILE: compleat.plugin.zsh |
||||||
# DESCRIPTION: oh-my-zsh plugin file. |
# DESCRIPTION: oh-my-zsh plugin file. |
||||||
# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com) |
# AUTHOR: Sorin Ionescu <sorin.ionescu@gmail.com> |
||||||
# VERSION: 1.0.0 |
# VERSION: 1.0.1 |
||||||
# ------------------------------------------------------------------------------ |
# ------------------------------------------------------------------------------ |
||||||
|
|
||||||
if (( ${+commands[compleat]} )); then |
if (( ${+commands[compleat]} )); then |
||||||
local prefix="${commands[compleat]:h:h}" |
compleat_setup="${commands[compleat]:h:h}/share/compleat-1.0/compleat_setup" |
||||||
local setup="${prefix}/share/compleat-1.0/compleat_setup" |
|
||||||
|
|
||||||
if [[ -f "$setup" ]]; then |
if [[ -f "$compleat_setup" ]]; then |
||||||
if ! bashcompinit >/dev/null 2>&1; then |
if ! bashcompinit >/dev/null 2>&1; then |
||||||
autoload -U bashcompinit |
autoload -Uz bashcompinit && bashcompinit |
||||||
bashcompinit -i |
|
||||||
fi |
fi |
||||||
|
|
||||||
source "$setup" |
source "$compleat_setup" |
||||||
|
unset compleat_setup |
||||||
fi |
fi |
||||||
fi |
fi |
||||||
|
|
||||||
|
Loading…
Reference in new issue