Re: Building the latest revision fails

2011-12-19 Thread Nicholas Marriott
Works perfectly for me with autoconf 2.65 and automake 1.10. Are you sure you have no local modifications? On Mon, Dec 19, 2011 at 03:40:13PM +0900, Kyohey Kurazeko wrote: > Hi there, > > I tried to build the latest revision of tmux to try this: > http://tmux.svn.sourceforge.net/viewvc/tmux?view

Re: [PATCH] New option to get cwd of new windows from active window

2011-12-19 Thread Matthias Lederhofer
Romain Francoise wrote: > Hi Matthias, > > Matthias Lederhofer writes: > > > Is it easily possible to disable this feature for new sessions, i.e. by > > putting something in the tmux.conf? > > I'm not sure what you're asking. If you want to disable the feature for > any sessions created in you

Please please please fix the buffering issue.

2011-12-19 Thread Robin Lee Powell
I have literally been watching the output of "perl -d:Trace" for more than 10 minutes, waiting to be granted control of my terminal again. :( I can't do any tmux commands at all. -Robin -- http://singinst.org/ : Our last, best hope for a fantastic future. Lojban (http://www.lojban.org/): The

Re: set-titles not working

2011-12-19 Thread Nicholas Marriott
Can you do this: printf '\033]0;abc\007'; sleep 10 outside tmux. If your title doesn't change, your terminal doesn't support it, tmux is changing it correctly by the look of it. On Fri, Dec 09, 2011 at 11:38:53AM -0500, Josh Audette wrote: > On Thu, Dec 08, 2011 at 01:21:55AM +, Nicholas

Re: Confusion about window names and pane titles

2011-12-19 Thread Nicholas Marriott
How about this? Index: tmux.1 === RCS file: /cvs/src/usr.bin/tmux/tmux.1,v retrieving revision 1.257 diff -u -p -r1.257 tmux.1 --- tmux.1 9 Dec 2011 16:28:18 - 1.257 +++ tmux.1 19 Dec 2011 20:34:33 - @@ -2110,7

Re: BUG: double width characters cause previous character to be lost

2011-12-19 Thread Nicholas Marriott
Yes, tmux should be eating the UTF-8 character, not the r. >Matthias Lederhofer wrote: > Nicholas Marriott wrote: > > uxterm rather. > > uxterm does actually not display the character, but displays a double > width

Re: BUG: double width characters cause previous character to be lost

2011-12-19 Thread Nicholas Marriott
Try this please, see if it fixes your problem and if you see any ill effects: Index: tty.c === RCS file: /cvs/src/usr.bin/tmux/tty.c,v retrieving revision 1.110 diff -u -p -r1.110 tty.c --- tty.c 24 Aug 2011 09:58:44 -

Re: DECSC in tmux vs xterm

2011-12-19 Thread Nicholas Marriott
Hi Well, I don't really mind which we are compatible with for something like this, but it seems like screen's way is more useful? On Wed, Dec 14, 2011 at 10:49:12PM -0800, George Nachman wrote: >I've noticed that there's a slight difference in how the DECSC/DECRC codes >work in tmux vs.

Re: Log entire session with pipe-pane? Examples please.

2011-12-19 Thread Nicholas Marriott
You can't log an entire session with pipe-pane, except by running it for each window individually. On Mon, Dec 12, 2011 at 02:19:57PM +0400, Avatar wrote: >HI >I'm interested in this feature to log all session in tmux. How can I do >this in this case if it is possible of course? > >

Re: Please please please fix the buffering issue.

2011-12-19 Thread Nicholas Marriott
This is actually quite a hard problem. The issue is that it is difficult on a fast machine to rate limit vast, continuous amounts of data quickly enough and to a slow enough rate that tmux can remain responsive, without affecting interactive programs which need to send a lot of data quickly in bur

Re: [tmux-users] Re: Please please please fix the buffering issue.

2011-12-19 Thread Robin Lee Powell
On Mon, Dec 19, 2011 at 11:20:29PM +, Nicholas Marriott wrote: > This is actually quite a hard problem. ;( I thought it might be. Steal the code from screen? :D > The issue is that it is difficult on a fast machine to rate limit > vast, continuous amounts of data quickly enough and to a sl

Re: Please please please fix the buffering issue.

2011-12-19 Thread Nicholas Marriott
For example, try this which rate limits input from each pane down to 19200 bps. You'll notice that interactive commands like "top" will noticeably pause. But it will have no real impact on a fast output command such as "yes" - this is because scrolling is expensive so "yes" can do a lot of damage

Re: [tmux-users] Re: Please please please fix the buffering issue.

2011-12-19 Thread Nicholas Marriott
screen does not successfully rate limit either or if it does nobody has yet to clearly demonstrate a case where it does. It's response times for running eg "yes" and hitting ^C or creating a new window are roughly the same as tmux, give or take a few seconds. On Mon, Dec 19, 2011 at 03:22:29PM -

Re: [tmux-users] Re: Please please please fix the buffering issue.

2011-12-19 Thread Robin Lee Powell
I've never had this level of problem with screen, at all, and I used it for many many years for everything. On Mon, Dec 19, 2011 at 11:43:04PM +, Nicholas Marriott wrote: > screen does not successfully rate limit either or if it does > nobody has yet to clearly demonstrate a case where it does

Re: Confusion about window names and pane titles

2011-12-19 Thread Felix Rosencrantz
Looks pretty good, I have four small issues: 1) automatic-rename is also turned off by setting window name via escape sequence, which is not spelled out, anywhere in the man page, and this is what actually was biting me originally. (or I missed it in the patched version or forgot to add that in th

Re: Building the latest revision fails

2011-12-19 Thread Stephen Thirlwall
Are you trying to build this using homebrew on a mac by any chance? This looks suspiciously like a problem I ran into recently. If so, as root, do: # echo $(brew --prefix)/share/aclocal >> /usr/share/aclocal/dirlist Steve On 19/12/11 5:40 PM, Kyohey Kurazeko wrote: > Hi there, > > I tried to

Re: [tmux-users] Re: Please please please fix the buffering issue.

2011-12-19 Thread Nicholas Marriott
On Mon, Dec 19, 2011 at 03:59:39PM -0800, Robin Lee Powell wrote: > I've never had this level of problem with screen, at all, and I used > it for many many years for everything. > > On Mon, Dec 19, 2011 at 11:43:04PM +, Nicholas Marriott wrote: > > screen does not successfully rate limit eithe

Re: [tmux-users] Re: Please please please fix the buffering issue.

2011-12-19 Thread Nicholas Marriott
I thought it might be xterm, so I tried rxvt. And indeed now screen can terminate yes pretty much instantly. But so can tmux. So no help there. On Mon, Dec 19, 2011 at 03:59:39PM -0800, Robin Lee Powell wrote: > I've never had this level of problem with screen, at all, and I used > it for many

Re: [tmux-users] Re: Please please please fix the buffering issue.

2011-12-19 Thread Nicholas Marriott
They are much the same on the Linux console too as far as I can tell with yes. I guess you are doing something different, either using tmux over ssh, or using a relatively old machine. On Tue, Dec 20, 2011 at 12:20:57AM +, Nicholas Marriott wrote: > I thought it might be xterm, so I tried rxv

Re: [tmux-users] Re: Please please please fix the buffering issue.

2011-12-19 Thread Robin Lee Powell
This is all over SSH, via PuTTY from windows, to a new/fast linux box in the same house. I'll give you more details on the terminals in a bit. -Robin On Tue, Dec 20, 2011 at 12:29:27AM +, Nicholas Marriott wrote: > They are much the same on the Linux console too as far as I can tell > with y

Re: [tmux-users] Re: Please please please fix the buffering issue.

2011-12-19 Thread Robin Lee Powell
On Tue, Dec 20, 2011 at 12:04:28AM +, Nicholas Marriott wrote: > On Mon, Dec 19, 2011 at 03:59:39PM -0800, Robin Lee Powell wrote: > > I've never had this level of problem with screen, at all, and I > > used it for many many years for everything. > > > > On Mon, Dec 19, 2011 at 11:43:04PM +000

Re: [tmux-users] Re: Please please please fix the buffering issue.

2011-12-19 Thread Nicholas Marriott
Ok ssh changes the game quite a lot. Can you try the diff I sent and see if that helps and if so what value for BYTES_MAX is acceptable? If it doesn't help let me know, I have another diff to rate limit outgoing data that might help instead. Or if not that, there is other stuff we can try. On Mo

Re: Confusion about window names and pane titles

2011-12-19 Thread Felix Rosencrantz
Attached is a patch based on the last patch, that corrects issue 1&4. -FR On Mon, Dec 19, 2011 at 4:00 PM, Felix Rosencrantz wrote: > Looks pretty good, I have four small issues: > > 1) automatic-rename is also turned off by setting window name via > escape sequence, which is not spelled out, an