[environment] better bracketed paste zsh >=5.2
This commit is contained in:
parent
609d94e949
commit
345233741e
1 changed files with 10 additions and 5 deletions
|
@ -5,12 +5,17 @@
|
||||||
# use smart URL pasting and escaping
|
# use smart URL pasting and escaping
|
||||||
autoload -Uz is-at-least
|
autoload -Uz is-at-least
|
||||||
if [[ ${ZSH_VERSION} != 5.1.1 ]]; then
|
if [[ ${ZSH_VERSION} != 5.1.1 ]]; then
|
||||||
|
if is-at-least 5.2; then
|
||||||
|
autoload -Uz bracketed-paste-url-magic
|
||||||
|
zle -N bracketed-paste-url-magic
|
||||||
|
else
|
||||||
if is-at-least 5.1; then
|
if is-at-least 5.1; then
|
||||||
autoload -Uz bracketed-paste-magic
|
autoload -Uz bracketed-paste-magic
|
||||||
zle -N bracketed-paste bracketed-paste-magic
|
zle -N bracketed-paste bracketed-paste-magic
|
||||||
fi
|
fi
|
||||||
autoload -Uz url-quote-magic
|
autoload -Uz url-quote-magic
|
||||||
zle -N self-insert url-quote-magic
|
zle -N self-insert url-quote-magic
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Treat single word simple commands without redirection as candidates for resumption of an existing job.
|
# Treat single word simple commands without redirection as candidates for resumption of an existing job.
|
||||||
|
|
Loading…
Reference in a new issue