Re: Running application in tmux stops when paging up/down

2011-06-26 Thread Jesse Molina
Thanks! I'll patch that, try again, and let you know. I sort of figured that tmux had it's own copy mode input buffer, like the scrollback buffer. I was surprised that it wasn't something that was configurable. I seem to remember this being configurable in screen, but I may be wrong. Nich

Re: Running application in tmux stops when paging up/down

2011-06-26 Thread Yue Wu
On Sun, Jun 26, 2011 at 04:54:40PM -0700, Jesse Molina wrote: > > Hello! > > I have an application which I run in tmux. It has a rudimentary console > that takes commands and it gives regular output as well. > > I recently noticed that if I do a ctrl+b and pgup to look at the > scrollback his

Re: Running application in tmux stops when paging up/down

2011-06-26 Thread Nicholas Marriott
Yes we turn off consuming data from the pane while it is in copy mode, so it will fill up the tty buffer and the application (if it has not set the tty fd to nonblocking) will block. This is the same as if it was writing to any terminal that doesn't keep up... applications which don't want to bloc