mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-13 01:10:09 +00:00
parent
a39bee8d11
commit
568a977d20
1 changed files with 2 additions and 2 deletions
|
@ -84,7 +84,7 @@ _bracketed_paste_enqueue() {
|
||||||
_bracketed_paste_zle_init() {
|
_bracketed_paste_zle_init() {
|
||||||
_bracketed_paste_content=''
|
_bracketed_paste_content=''
|
||||||
# Tell terminal to send escape codes around pastes
|
# Tell terminal to send escape codes around pastes
|
||||||
if [ $TERM =~ '^(rxvt-unicode|xterm(-256color)?|screen(-256color)?)$' ]; then
|
if [[ $TERM =~ '^(rxvt-unicode|xterm(-256color)?|screen(-256color)?)$' ]]; then
|
||||||
printf '\e[?2004h'
|
printf '\e[?2004h'
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
@ -93,7 +93,7 @@ _bracketed_paste_zle_init() {
|
||||||
_bracketed_paste_zle_finish() {
|
_bracketed_paste_zle_finish() {
|
||||||
# Turn off bracketed paste when we leave ZLE, so pasting in other programs
|
# Turn off bracketed paste when we leave ZLE, so pasting in other programs
|
||||||
# doesn't get the ^[[200~ codes around the pasted text
|
# doesn't get the ^[[200~ codes around the pasted text
|
||||||
if [ $TERM =~ '^(rxvt-unicode|xterm(-256color)?|screen(-256color)?)$' ]; then
|
if [[ $TERM =~ '^(rxvt-unicode|xterm(-256color)?|screen(-256color)?)$' ]]; then
|
||||||
printf '\e[?2004l'
|
printf '\e[?2004l'
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue