Added Compleat - Completion for Human Beings plugin.
This commit is contained in:
parent
ce81b3d261
commit
7e378f6ef9
22
plugins/compleat/compleat.plugin.zsh
Normal file
22
plugins/compleat/compleat.plugin.zsh
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# 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
|
||||||
|
if ! bashcompinit >/dev/null 2>&1; then
|
||||||
|
autoload -U bashcompinit
|
||||||
|
bashcompinit -i
|
||||||
|
fi
|
||||||
|
|
||||||
|
source "$setup"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue