Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: [PATCH] zle: Call zle-line-pre-redraw after inserting a completion result
- X-seq: zsh-workers 39652
- From: Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: Re: [PATCH] zle: Call zle-line-pre-redraw after inserting a completion result
- Date: Sun, 16 Oct 2016 15:13:54 +0000
- Cc: m0viefreak <m0viefreak.cm@xxxxxxxxxxxxxx>
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=Cn+8CRO6T1yi8BK5ZYujF5yM+yk=; b=Wc0heH s/Gy58JZLgUv/xPA/k9XZ1EpF7xkjbEX4cKCwMuUD48gaAkfiF2qTv3153qqqz5/ 9WdvYx8+othT8vxVJ+cpcUT9tUzfu1aw2UAg2CABXWIK+ia0ogobzV5RBpeWEubu udgSOKPqaMiJejIZEj1Uu65OhNVkJpOtDB2mU=
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=smtpout; bh=Cn+8CRO6T1yi8BK5ZYujF5yM+yk=; b=bx6Gw j0rb6sYq/8bxtyiMS89qBNmzNJSD9LBRqSDAXh9KzChAgxwR93NYr5qnwofcrwIT 0evVD4MklSCfxaZg8JUC92FbBoGETPgwd70qVmHq69cyNMpbyRe3duGkL0bhtI42 WwUSaWbE1itOZaGqATy9MC0uzOzZ8tdNf6KCNc=
- In-reply-to: <43c19ce7-6445-8b56-68e7-60fc82258183@googlemail.com>
- 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
- References: <43c19ce7-6445-8b56-68e7-60fc82258183@googlemail.com>
m0viefreak wrote on Sat, Oct 08, 2016 at 19:30:16 +0200:
> This patch originated from a zsh-synatx-highlighting issue:
> https://github.com/zsh-users/zsh-syntax-highlighting/issues/375
>
> I think redrawhook() should be called at the end of do_single()
> to make sure that zle-line-pre-redraw is run when cycling the results of
> a menu completion.
Any thoughts on the patch? With my z-sy-h hat, I confirm it behaves as
promised (applies highlighting whilst tabbing through menu completion),
but with my zsh hat, I am not familiar with zle enough to review this
patch.
Cheers,
Daniel
> From 6c1e1fe71011f8617a85fb2d53b7a36c8fcd0d07 Mon Sep 17 00:00:00 2001
> From: m0viefreak <m0viefreak.cm@xxxxxxxxxxxxxx>
> Date: Sat, 8 Oct 2016 18:53:55 +0200
> Subject: [PATCH] zle: Call zle-line-pre-redraw after inserting a completion
> result
>
> This is necessary to make sure redrawhook() is called while
> cycling results in menu completion.
> ---
> Src/Zle/compresult.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/Src/Zle/compresult.c b/Src/Zle/compresult.c
> index 7fec7c8..b7ec18f 100644
> --- a/Src/Zle/compresult.c
> +++ b/Src/Zle/compresult.c
> @@ -1191,6 +1191,7 @@ do_single(Cmatch m)
> if (menucmp)
> minfo.cur = &m;
> runhookdef(INSERTMATCHHOOK, (void *) &dat);
> + redrawhook();
> minfo.cur = om;
> }
> }
Messages sorted by:
Reverse Date,
Date,
Thread,
Author