1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-24 20:30:44 +00:00

fix custom prompt when the command is just one word; fixes #189

This commit is contained in:
romkatv 2019-08-27 08:53:28 +02:00
parent 613b1a646e
commit e4d78d2a72

View file

@ -1142,7 +1142,7 @@ _p9k_custom_prompt() {
local segment_name=${1:u}
local command=POWERLEVEL9K_CUSTOM_${segment_name}
command=${(P)command}
local cmd="${(Q)${(z)command}[1]}"
local cmd="${(Q)${(Az)command}[1]}"
(( $+functions[$cmd] || $+commands[$cmd] )) || return
local content="$(eval $command)"
[[ -n $content ]] || return