Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Bug in bracketed-paste-magic?
- X-seq: zsh-workers 37962
- From: Eric Freese <ericdfreese@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: Bug in bracketed-paste-magic?
- Date: Sat, 13 Feb 2016 20:42:02 -0700
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=FUC1k5uq3VcDu/LkMs0Iw9IZHZ0yjYVYQKE2R2MjC7M=; b=PmKTXYdj2MpbLdzaHF0oQBeU9kfEANUGLMlyPu3G3xlEODUSqZNBgRw9kc/d12CU4O BEzFIPcZpvfvyhE2wVTR7qhDOyzJsToSD1kKG7Dnh767cop8KNCTvDGUejmpUY4xnhuh 8RRu5HsJzOWx97cdwMHGdpJQlqCnBjE3Ftlsddc949fxMhXzNTUdXLLqnWomM93KjTxY 4SPiOJLYXqPpRysm659QaYGA93hnU4BjBiTpwxdhvH6/j8JLAvnGnFGGQ2iupK29zSQs fvUU8wfapU4xNQozvyst45qxeb7F76aWJBhCRCE4MW7tRfsZ14EyD7szasUIpwWfrhrb Or4g==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
Hi,
I'm developing an autosuggest plugin at
https://github.com/tarruda/zsh-autosuggestions and have been looking into
an issue (#102 in that repo) that occurs when bracketed-paste-magic is
enabled. I've tracked it down to the `bracketed-paste-magic` function
making a call to `zle` without the `-w` flag. It seems to me this is a bug
in bracketed-paste-magic- that it should be using the `-w` flag to set
$WIDGET and associated parameters when invoking a possibly user-defined
widget. Would adding the `-w` flag here possibly break anything else?
I'm not very familiar with the best way to get this patched, but I've
forked the repo on GitHub and pushed a commit that adds the `-w` flag. It's
available at
https://github.com/ericfreese/zsh/commit/ff23295570e477a6f4b4c1c1e0f97eddc277bcd9
The relevant github issue for my plugin:
https://github.com/tarruda/zsh-autosuggestions/issues/102
Cheers,
Eric Freese
P.S. Another concern (though it's really a separate issue) is the `zle
undo` later in the file. Shouldn't that be `zle .undo` to avoid any
potential problems arising from the `undo` widget being overridden by a
user-defined widget?
Messages sorted by:
Reverse Date,
Date,
Thread,
Author