diff options
author | Barton E. Schaefer <schaefer@zsh.org> | 2016-02-14 11:35:18 -0800 |
---|---|---|
committer | Barton E. Schaefer <schaefer@zsh.org> | 2016-02-14 11:35:18 -0800 |
commit | e54578ff74754b70e230106d292eb645f61176f1 (patch) | |
tree | 37230be5ba48558b31dcd1ad5c1885e3df61aa35 /Functions/Zle/bracketed-paste-magic | |
parent | f07a1bd00935b53e73dcbec4e039aef7cc1996b1 (diff) | |
download | zsh-e54578ff74754b70e230106d292eb645f61176f1.tar.gz zsh-e54578ff74754b70e230106d292eb645f61176f1.tar.xz zsh-e54578ff74754b70e230106d292eb645f61176f1.zip |
37971: fix potential issues when interacting with user-defined widgets
Cf. users/21284: Eric Freese
Diffstat (limited to 'Functions/Zle/bracketed-paste-magic')
-rw-r--r-- | Functions/Zle/bracketed-paste-magic | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Functions/Zle/bracketed-paste-magic b/Functions/Zle/bracketed-paste-magic index 2b2bc630d..498cf554d 100644 --- a/Functions/Zle/bracketed-paste-magic +++ b/Functions/Zle/bracketed-paste-magic @@ -175,7 +175,7 @@ bracketed-paste-magic() { case $REPLY in (${~bpm_active}) function () { emulate -L $bpm_emulate; set -$bpm_opts - zle $REPLY + zle $REPLY -w };; (*) zle .self-insert;; esac @@ -184,7 +184,7 @@ bracketed-paste-magic() { PASTED=$BUFFER # Reset the undo state - zle undo $bpm_undo + zle .undo $bpm_undo UNDO_LIMIT_NO=$bpm_limit zle -K $bpm_keymap |