Patch - control mode (updated)

2012-03-18 Thread George Nachman
The attached patch adds control mode and is up to date with the latest changes. Index: tmux.h === --- tmux.h (revision 2749) +++ tmux.h (working copy) @@ -402,6 +402,7 @@ #define IDENTIFY_UTF8 0x1 #define IDENTIFY_256COLOUR

Re: multiline status bar.

2012-03-18 Thread Nicholas Marriott
Hi No there is no way to do this at the moment. Well, you could run another tmux inside tmux. On Sun, Mar 18, 2012 at 09:23:27PM +0530, Prashant M. Bapat wrote: >Hi tmux-users, > >Is it possible to set the status bar to be in two or three lines instead >of the default one line? > >

Re: q. about select-pane in tmux 1.5

2012-03-18 Thread ranga24c
Cool. This works. I can't believe I didn't notice this in the docs. :| On Sun, Mar 18, 2012 at 12:20 AM, Nicholas Marriott wrote: > Well, I think this was actually changed in tmux 1.2. Try using -t:.+ and > -t:.- (the former is still bound to C-b o). > > > > On Sat, Mar 17, 2012 at 09:52:36PM -07

multiline status bar.

2012-03-18 Thread Prashant M. Bapat
Hi tmux-users, Is it possible to set the status bar to be in two or three lines instead of the default one line? I login to lots of servers (20+) and at any point i can see only about 10 of them. Thanks. --Prashant -- Th

Re: [tmux] Re: [PATCH] don't overwrite terminal contents on clear when alternate-screen=off

2012-03-18 Thread Nicholas Marriott
Yep this will always be best effort and highly dependent on what the application does. Still, with TERM=screen, clear is \E[H\E[J and that's what vi (not vim) uses for me and what I'd expect most to use, not sure why vim is different. tmux saves the screen to it's own history if either of ED 0/2 c

Re: q. about select-pane in tmux 1.5

2012-03-18 Thread Nicholas Marriott
Well, I think this was actually changed in tmux 1.2. Try using -t:.+ and -t:.- (the former is still bound to C-b o). On Sat, Mar 17, 2012 at 09:52:36PM -0700, ranga...@gmail.com wrote: > In older versions of tmux, select-pane had an option to go the next > higher *numbered* pane with wrap-around

Re: is line wrapping always hard with tmux?

2012-03-18 Thread Nicholas Marriott
Hi show-buffer is not meant to preserve line wraps. You want to use "tmux save-buffer - >/path/to/file" instead. On Sun, Mar 18, 2012 at 07:51:13AM +0800, Le Wang wrote: >I have some more details on how this is happening, but still not sure how >to fix it. > >I'm using this hack to

Re: is line wrapping always hard with tmux?

2012-03-18 Thread Le Wang
I have some more details on how this is happening, but still not sure how to fix it. I'm using this hack to copy lines into OS X clipboard: https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard So I have this in my ~/.tmux.conf set-option -g default-command "reattach-to-user-namespace -l zsh" #

Re: is line wrapping always hard with tmux?

2012-03-18 Thread Le Wang
I figured it out. `tmux save-buffer -` instead of `tmux show-buffer` works. On Sun, Mar 18, 2012 at 7:51 AM, Le Wang wrote: > I have some more details on how this is happening, but still not sure how > to fix it. > > I'm using this hack to copy lines into OS X clipboard: > https://github.com/Ch