1
0
Fork 0
mirror of synced 2024-06-01 06:41:12 -04:00

use is-at-least to determine version

This commit is contained in:
Matt Hamilton 2015-12-27 03:56:18 -05:00
parent 11aaff5614
commit 599add14b9

View file

@ -3,10 +3,13 @@
#
# use smart URL pasting and escaping
if [[ ${ZSH_VERSION%.*} -ge 5.1 ]]; then
autoload -Uz is-at-least
if [[ ${ZSH_VERSION} != 5.1.1 ]]; then
if is-at-least 5.1; then
autoload -Uz bracketed-paste-magic
zle -N bracketed-paste bracketed-paste-magic
fi
fi
autoload -Uz url-quote-magic
zle -N self-insert url-quote-magic