Merge pull request #905 from robobenklein/robobenklein/defined-variable-performance-hotfix

[performance] Defined function 2-20 times speedup
pull/22/head
Ben Hilburn 6 years ago committed by GitHub
commit a7b3f310d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,9 +9,7 @@
# Exits with 0 if a variable has been previously defined (even if empty) # Exits with 0 if a variable has been previously defined (even if empty)
# Takes the name of a variable that should be checked. # Takes the name of a variable that should be checked.
function defined() { function defined() {
local varname="$1" [[ ! -z "${(tP)1}" ]]
typeset -p "$varname" > /dev/null 2>&1
} }
# Given the name of a variable and a default value, sets the variable # Given the name of a variable and a default value, sets the variable

@ -498,7 +498,7 @@ prompt_battery() {
fi fi
fi fi
# return if POWERLEVEL9K_BATTERY_HIDE_ABOVE_THRESHOLD is set and the battery percentage is greater or equal # return if POWERLEVEL9K_BATTERY_HIDE_ABOVE_THRESHOLD is set and the battery percentage is greater or equal
if [[ -v "POWERLEVEL9K_BATTERY_HIDE_ABOVE_THRESHOLD" && "${bat_percent}" -ge $POWERLEVEL9K_BATTERY_HIDE_ABOVE_THRESHOLD ]]; then if defined POWERLEVEL9K_BATTERY_HIDE_ABOVE_THRESHOLD && [[ "${bat_percent}" -ge $POWERLEVEL9K_BATTERY_HIDE_ABOVE_THRESHOLD ]]; then
return return
fi fi

Loading…
Cancel
Save