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:
parent
61019c5827
commit
77c95428bb
1 changed files with 5 additions and 0 deletions
5
init.zsh
5
init.zsh
|
@ -2,6 +2,11 @@
|
||||||
# Zim initializition
|
# 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
|
# Define zim location
|
||||||
ZIM="${ZDOTDIR:-${HOME}}/.zim"
|
ZIM="${ZDOTDIR:-${HOME}}/.zim"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue