mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-16 17:50:09 +00:00
Use defined to check if ICON_USER_VARIABLE is defined.
This commit is contained in:
parent
893bfe243d
commit
378b910af6
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ function print_icon() {
|
|||
local icon_name=$1
|
||||
local ICON_USER_VARIABLE=POWERLEVEL9K_${icon_name}
|
||||
local USER_ICON=${(P)ICON_USER_VARIABLE}
|
||||
if [[ -n "$USER_ICON" ]]; then
|
||||
if defined "$ICON_USER_VARIABLE"; then
|
||||
echo -n $USER_ICON
|
||||
else
|
||||
echo -n ${icons[$icon_name]}
|
||||
|
|
Loading…
Reference in a new issue