1
0
Fork 0

Fix prompt call, close #22

pull/31/merge
Sorin Ionescu 13 years ago
parent fd669f22a4
commit 01d9ec13d8

@ -88,7 +88,11 @@ autoload -Uz promptinit && promptinit
# Load the prompt theme.
zstyle -a ':omz:prompt' theme 'prompt_argv'
prompt "$prompt_argv[@]"
if (( $#prompt_argv > 0 )); then
prompt "$prompt_argv[@]"
else
prompt 'off'
fi
unset prompt_argv
# Compile the completion dump, to increase startup speed.

Loading…
Cancel
Save