How do you make tmux count windows starting with 1 instead of 0?

2012-04-06 Thread Kevin Tran
I recently started using tmux. I was able to make GNU Screen start counting windows with the number 1 instead of the default 0 with this code in my .screenrc: # Get rid of screen 0 bind c screen 1 bind ^c screen 1 bind 0 select 10 When I created windows in .screenrc I used screen 1 so that it w

Re: How do you make tmux count windows starting with 1 instead of 0?

2012-04-06 Thread Kevin Tran
Awesome thank you! On Apr 6, 2012, at 10:20 PM, Andy Lester wrote: > > On Apr 7, 2012, at 12:17 AM, Kevin Tran wrote: > >> I recently started using tmux. I was able to make GNU Screen start counting >> windows with the number 1 instead of the default 0 with this cod

the Python shell of pudb isn't displayed correctly in tmux

2012-06-22 Thread Kevin Tran
I am running: python 2.7.1 pudb==2012.1 urwid==1.0.1 pigments==1.5 tmux==1.6 When I use pudb in a tmux session, the python shell shows at the bottom when it should clear the screen. Screenshots Outside of a tmux session: http://imgur.com/uZHpG Inside a tmux session: http://imgur.com/tjirf What

Re: the Python shell of pudb isn't displayed correctly in tmux

2012-06-22 Thread Kevin Tran
Inside tmux $TERM is screen-256color. Outside tmux $TERM is xterm-256color. It behaved the same way with $TERM from within a tmux session set to xterm-256color. On Jun 22, 2012, at 3:34 PM, Fabio Spelta wrote: > > What's happening? Is this a problem with tmux or with pudb? How do you fix > th

Re: the Python shell of pudb isn't displayed correctly in tmux

2012-06-22 Thread Kevin Tran
I think my $TERM is correct. Inside tmux $TERM is screen-256color. On Jun 22, 2012, at 3:46 PM, Nicholas Marriott wrote: > Your TERM is probably wrong, it needs to be "screen" inside tmux. > > > On Fri, Jun 22, 2012 at 02:59:42PM -0700, Kevin Tran wrote: >> I a

Re: the Python shell of pudb isn't displayed correctly in tmux

2012-06-23 Thread Kevin Tran
~ $ exit exit Script done on Sat Jun 23 19:10:01 2012 On Jun 23, 2012, at 12:08 AM, Nicholas Marriott wrote: > Ok, run the program in script inside tmux and send me the typescript > file please. > > > On Fri, Jun 22, 2012 at 06:05:01PM -0700, Kevin Tran wrote: >>

Re: the Python shell of pudb isn't displayed correctly in tmux

2012-07-10 Thread Kevin Tran
, then reproduce the problem and send me the logs from the current > directory please. > > > > On Sat, Jun 23, 2012 at 07:11:10PM -0700, Kevin Tran wrote: >> typescript follows: >> >> Script started on Sat Jun 23 19:09:49 2012 >> ]7;file://ktmacbookpro/Users/hait

Re: the Python shell of pudb isn't displayed correctly in tmux

2012-07-14 Thread Kevin Tran
oes > not wrap lines), then checkout tmux SVN and do: > > cd tmux/trunk > patch sh autogen.sh > ./configure > make > > > > On Wed, Jul 11, 2012 at 08:37:28AM -0700, Kevin Tran wrote: >> Outside of tmux my TERM is xterm-256color. The author of pudb said he

Re: the Python shell of pudb isn't displayed correctly in tmux

2012-07-15 Thread Kevin Tran
uct window_pane *, u_int, u_int); On Jul 15, 2012, at 1:25 PM, Nicholas Marriott wrote: > You are missing redirection. Either > > patch <~/Desktop/foo.diff > > Or > > cat ~/Desktop/foo.diff|patch > > > > > On Sun, Jul 15, 2012 at 10:35:11AM -0700, Kevin T