mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
f776af2a1f
Fixes #9246
17 lines
547 B
Bash
17 lines
547 B
Bash
# ------------------------------------------------------------------------------
|
|
# FILE: compleat.plugin.zsh
|
|
# DESCRIPTION: oh-my-zsh plugin file.
|
|
# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com)
|
|
# VERSION: 1.0.0
|
|
# ------------------------------------------------------------------------------
|
|
|
|
if (( ${+commands[compleat]} )); then
|
|
local prefix="${commands[compleat]:h:h}"
|
|
local setup="${prefix}/share/compleat-1.0/compleat_setup"
|
|
|
|
if [[ -f "$setup" ]]; then
|
|
source "$setup"
|
|
fi
|
|
|
|
unset prefix setup
|
|
fi
|