1
0
Fork 0
mirror of synced 2024-07-26 18:11:12 -04:00

Warning message for zsh < 5.2

as discussed in #184. We'll first give users this warning message. Next
update will replace this by an error.

Also, starting at next update, a new branch will be created for users
that still want to stick with zsh < 5.2.
This commit is contained in:
Eric Nielsen 2017-06-28 16:55:48 -05:00
parent 61019c5827
commit 77c95428bb

View file

@ -2,6 +2,11 @@
# Zim initializition
#
autoload -Uz is-at-least
if ! is-at-least 5.2; then
print "WARNING: Support for zsh < 5.2 will be moved to an unsupported branch on the next update. Please consider updating your zsh version." >&2
fi
# Define zim location
ZIM="${ZDOTDIR:-${HOME}}/.zim"