dont load the prompt module if older zsh version

This commit is contained in:
Ben O'Hara 2012-06-17 14:53:14 +10:00
parent ce93ba5d20
commit 2a0a7b3061

View file

@ -8,6 +8,13 @@
# Load and execute the prompt theming system.
autoload -Uz promptinit && promptinit
# Check for the minimum supported version.
min_zsh_version='4.3.10'
if ! autoload -Uz is-at-least || ! is-at-least "$min_zsh_version"; then
return 1
fi
unset min_zsh_version
# Load the prompt theme.
zstyle -a ':omz:module:prompt' theme 'prompt_argv'
if (( $#prompt_argv > 0 )); then