2012-02-01 04:37:51 +00:00
|
|
|
#
|
|
|
|
# Defines helper functions.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2012-04-11 03:15:19 +00:00
|
|
|
# Checks a boolean variable for "true".
|
2012-04-02 22:51:00 +00:00
|
|
|
# Case insensitive: "1", "y", "yes", "t", "true", "o", and "on".
|
2012-03-23 18:57:51 +00:00
|
|
|
function is-true {
|
2011-07-28 20:41:39 +00:00
|
|
|
[[ -n "$1" && "$1" == (1|[Yy]([Ee][Ss]|)|[Tt]([Rr][Uu][Ee]|)|[Oo]([Nn]|)) ]]
|
|
|
|
}
|
|
|
|
|
2012-04-11 03:16:04 +00:00
|
|
|
# Checks a name if it is a command, function, or alias.
|
|
|
|
function is-callable {
|
|
|
|
(( $+commands[$1] )) || (( $+functions[$1] )) || (( $+aliases[$1] ))
|
|
|
|
}
|
|
|
|
|
2012-03-15 00:19:49 +00:00
|
|
|
# Prints the first non-empty string in the arguments array.
|
2012-03-23 18:57:51 +00:00
|
|
|
function coalesce {
|
2012-03-23 01:26:30 +00:00
|
|
|
for arg in $argv; do
|
2012-03-15 00:19:49 +00:00
|
|
|
print "$arg"
|
|
|
|
return 0
|
|
|
|
done
|
|
|
|
return 1
|
2012-04-02 22:51:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Checks if a file can be autoloaded by trying to load it in a subshell.
|
|
|
|
function autoloadable {
|
|
|
|
( unfunction $1 ; autoload -U +X $1 ) &> /dev/null
|
|
|
|
}
|
|
|
|
|
2012-09-03 20:08:39 +00:00
|
|
|
# Loads Prezto modules.
|
|
|
|
function pmodload {
|
|
|
|
local -a pmodules
|
|
|
|
local pmodule
|
|
|
|
local pfunction_glob='^([_.]*|prompt_*_setup|README*)(.N:t)'
|
2012-04-02 22:51:00 +00:00
|
|
|
|
2012-05-08 02:19:20 +00:00
|
|
|
# $argv is overridden in the anonymous function.
|
2012-09-03 20:08:39 +00:00
|
|
|
pmodules=("$argv[@]")
|
2012-05-08 02:19:20 +00:00
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
# Add functions to $fpath.
|
2012-09-03 20:08:39 +00:00
|
|
|
fpath=(${pmodules:+${PREZTO}/modules/${^pmodules}/functions(/FN)} $fpath)
|
2012-07-23 19:00:44 +00:00
|
|
|
|
2012-05-07 18:13:50 +00:00
|
|
|
function {
|
2012-09-03 20:08:39 +00:00
|
|
|
local pfunction
|
2012-04-02 22:51:00 +00:00
|
|
|
|
2012-05-07 18:13:50 +00:00
|
|
|
# Extended globbing is needed for listing autoloadable function directories.
|
|
|
|
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
2012-04-02 22:51:00 +00:00
|
|
|
|
2012-09-03 20:08:39 +00:00
|
|
|
# Load Prezto functions.
|
|
|
|
for pfunction in $PREZTO/modules/${^pmodules}/functions/$~pfunction_glob; do
|
|
|
|
autoload -Uz "$pfunction"
|
2012-05-07 18:13:50 +00:00
|
|
|
done
|
2012-05-08 02:19:20 +00:00
|
|
|
}
|
2012-04-02 22:51:00 +00:00
|
|
|
|
2012-09-03 20:08:39 +00:00
|
|
|
# Load Prezto modules.
|
|
|
|
for pmodule in "$pmodules[@]"; do
|
|
|
|
if zstyle -t ":prezto:module:$pmodule" loaded; then
|
2012-04-02 22:51:00 +00:00
|
|
|
continue
|
2012-09-03 20:08:39 +00:00
|
|
|
elif [[ ! -d "$PREZTO/modules/$pmodule" ]]; then
|
|
|
|
print "$0: no such module: $pmodule" >&2
|
2012-04-02 22:51:00 +00:00
|
|
|
continue
|
|
|
|
else
|
2012-09-03 20:08:39 +00:00
|
|
|
if [[ -s "$PREZTO/modules/$pmodule/init.zsh" ]]; then
|
|
|
|
source "$PREZTO/modules/$pmodule/init.zsh"
|
2012-04-02 22:51:00 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if (( $? == 0 )); then
|
2012-09-03 20:08:39 +00:00
|
|
|
zstyle ":prezto:module:$pmodule" loaded 'yes'
|
2012-04-02 22:51:00 +00:00
|
|
|
else
|
2012-07-23 19:00:44 +00:00
|
|
|
# Remove the $fpath entry.
|
2012-09-03 20:08:39 +00:00
|
|
|
fpath[(r)$PREZTO/modules/${pmodule}/functions]=()
|
2012-07-23 19:00:44 +00:00
|
|
|
|
|
|
|
function {
|
2012-09-03 20:08:39 +00:00
|
|
|
local pfunction
|
2012-07-23 19:00:44 +00:00
|
|
|
|
|
|
|
# Extended globbing is needed for listing autoloadable function
|
|
|
|
# directories.
|
|
|
|
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
|
|
|
|
2012-09-03 20:08:39 +00:00
|
|
|
# Unload Prezto functions.
|
|
|
|
for pfunction in $PREZTO/modules/$pmodule/functions/$~pfunction_glob; do
|
|
|
|
unfunction "$pfunction"
|
2012-07-23 19:00:44 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2012-09-03 20:08:39 +00:00
|
|
|
zstyle ":prezto:module:$pmodule" loaded 'no'
|
2012-04-02 22:51:00 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
2012-03-15 00:19:49 +00:00
|
|
|
}
|
|
|
|
|