prezto_config/helper.zsh

94 lines
2.5 KiB
Bash
Raw Normal View History

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