Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: cosmetic completion problem



>     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