1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-06-29 09:07:26 +00:00
prezto/helper.zsh

67 lines
1.6 KiB
Bash
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# Defines helper functions.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-07-28 20:41:39 +00:00
# Checks if a file can be autoloaded by trying to load it in a subshell.
function autoloadable {
2011-07-28 20:41:39 +00:00
( unfunction $1 ; autoload -U +X $1 ) &> /dev/null
}
# Checks boolean variable for "true" (case insensitive "1", "y", "yes", "t", "true", "o", and "on").
function is-true {
2011-07-28 20:41:39 +00:00
[[ -n "$1" && "$1" == (1|[Yy]([Ee][Ss]|)|[Tt]([Rr][Uu][Ee]|)|[Oo]([Nn]|)) ]]
}
# Prints the first non-empty string in the arguments array.
function coalesce {
for arg in $argv; do
print "$arg"
return 0
done
return 1
}
2011-07-28 20:41:39 +00:00
# Trap signals were generated with 'kill -l'.
2011-10-12 03:13:58 +00:00
# DEBUG, EXIT, and ZERR are Zsh signals.
2011-07-28 20:41:39 +00:00
TRAP_SIGNALS=(
ABRT ALRM BUS CHLD CONT EMT FPE HUP ILL INFO INT IO KILL PIPE PROF QUIT
SEGV STOP SYS TERM TRAP TSTP TTIN TTOU URG USR1 USR2 VTALRM WINCH XCPU XFSZ
DEBUG EXIT ZERR
)
# Adds a function to a list to be called when a trap is triggered.
function add-zsh-trap {
2011-07-28 20:41:39 +00:00
if (( $# < 2 )); then
2012-01-25 04:40:32 +00:00
print "usage: $0 type function" >&2
2011-07-28 20:41:39 +00:00
return 1
fi
if [[ -z "$TRAP_SIGNALS[(r)$1]" ]]; then
2012-01-25 04:40:32 +00:00
print "$0: unknown signal: $1" >&2
2011-07-28 20:41:39 +00:00
return 1
fi
local trap_functions="TRAP${1}_FUNCTIONS"
if (( ! ${(P)+trap_functions} )); then
typeset -gaU "$trap_functions"
fi
eval "$trap_functions+="$2""
if (( ! $+functions[TRAP${1}] )); then
eval "
function TRAP${1} {
2011-07-28 20:41:39 +00:00
for trap_function in \"\$TRAP${1}_FUNCTIONS[@]\"; do
if (( \$+functions[\$trap_function] )); then
\"\$trap_function\" \"\$1\"
fi
done
return \$(( 128 + \$1 ))
}
"
fi
}