Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: cosmetic completion problem
- X-seq: zsh-workers 21856
- From: Clint Adams <clint@xxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: Re: cosmetic completion problem
- Date: Sat, 8 Oct 2005 17:40:58 -0400
- In-reply-to: <20051008073254.GB81@DervishD>
- Mail-followup-to: zsh-workers@xxxxxxxxxx
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- References: <20051006205811.GA29634@xxxxxxxxxxx> <20051008073254.GB81@DervishD>
> BTW, Clint, which version of zsh are you using?
CVS HEAD.
This seems to fix part of the problem, but not all of it. I don't know
what it breaks.
--- orig/Src/Zle/complist.c
+++ mod/Src/Zle/complist.c
@@ -653,7 +653,7 @@
* There might be problems with characters of printing width
* greater than one here.
*/
- if (col >= columns) {
+ if (col > columns) {
ml++;
if (mscroll && !--mrestlines && (ask = asklistscroll(ml))) {
mlprinted = ml - oml;
Messages sorted by:
Reverse Date,
Date,
Thread,
Author