1
0
Fork 0
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:
m0viefreak 2016-10-08 18:53:55 +02:00 committed by Daniel Shahaf
parent ecc0a5ece2
commit 5b192a4cd1
2 changed files with 6 additions and 0 deletions

View file

@ -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

View file

@ -1191,6 +1191,7 @@ do_single(Cmatch m)
if (menucmp)
minfo.cur = &m;
runhookdef(INSERTMATCHHOOK, (void *) &dat);
redrawhook();
minfo.cur = om;
}
}