Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: promptcr workaround
- X-seq: zsh-workers 20904
- From: Wayne Davison <wayned@xxxxxxxxxxxxxxxxxxxxx>
- To: Danek Duvall <duvall@xxxxxxxxxxxxxx>
- Subject: Re: promptcr workaround
- Date: Tue, 1 Mar 2005 10:50:51 -0800
- Cc: zsh-workers@xxxxxxxxxx
- In-reply-to: <20050301182018.GA17604@xxxxxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- References: <quack.20050301T0017.874qfvbx08@xxxxxxxxxxxxxxxxxxxxx> <1050301173951.ZM27936@xxxxxxxxxxxxxxxxxxxxxxx> <20050301182018.GA17604@xxxxxxxxxxxxxxxxxxxxx>
On Tue, Mar 01, 2005 at 10:20:18AM -0800, Danek Duvall wrote:
> repeat $COLUMNS echoti cuf1 ?
That won't wrap on most terminals, so you'd have to do something like
this:
repeat $(( $COLUMNS - 2 )) echoti cuf1
echo -n ' '
However, that puts one or two spaces into the end of the line, so it
may not change the copy behavior that Bart was complaining about (my
terminal program doesn't behave the way Bart's does, so I don't know
if that's any better or not -- probably not).
..wayne..
Messages sorted by:
Reverse Date,
Date,
Thread,
Author