[prompt] pass prompt prams from zprompt_theme

While normally it's a good thing that zsh doesn't auto-expand on spaces,
in this case we want to split on spaces into distinct words, that way
the values are passed to `prompt` in multiple params.

Fixes #178
This commit is contained in:
Matt Hamilton 2017-09-18 09:18:20 -04:00
parent 54faa20468
commit d40b6cf928
1 changed files with 1 additions and 1 deletions

View File

@ -4,5 +4,5 @@
if [[ ! ${TERM} == (linux|*bsd*|dumb) ]] && (( ${+zprompt_theme} )); then
autoload -Uz promptinit && promptinit
prompt ${zprompt_theme}
prompt ${(ps: :)${zprompt_theme}}
fi