[Fix #713] Set prompt theme off in unsupported terminal

This commit is contained in:
Sorin Ionescu 2014-11-05 17:41:36 -05:00
parent d020d34e59
commit ab7f697734
1 changed files with 3 additions and 3 deletions

View File

@ -10,9 +10,9 @@ autoload -Uz promptinit && promptinit
# Load the prompt theme.
zstyle -a ':prezto:module:prompt' theme 'prompt_argv'
if (( $#prompt_argv > 0 )); then
prompt "$prompt_argv[@]"
else
if [[ "$TERM" == (dumb|linux|*bsd*) ]] || (( $#prompt_argv < 1 )); then
prompt 'off'
else
prompt "$prompt_argv[@]"
fi
unset prompt_argv