mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 22:11:54 +02:00
39590: 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.
This commit is contained in:
parent
ecc0a5ece2
commit
5b192a4cd1
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2016-10-18 m0viefreak <m0viefreak.cm@googlemail.com>
|
||||
|
||||
* 39590: Src/Zle/compresult.c: zle: Call zle-line-pre-redraw
|
||||
after inserting a completion result
|
||||
|
||||
2016-10-18 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||
|
||||
* 39654: Completion/Unix/Command/_make: (based on patch by
|
||||
|
|
|
@ -1191,6 +1191,7 @@ do_single(Cmatch m)
|
|||
if (menucmp)
|
||||
minfo.cur = &m;
|
||||
runhookdef(INSERTMATCHHOOK, (void *) &dat);
|
||||
redrawhook();
|
||||
minfo.cur = om;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue