Re: sessions should be nested with care, unset $TMUX to force

2013-06-04 Thread simfox3
Mariusz, Are you starting tmux on shell login (.bashrc/.bash_profile)? Each pane in tmux runs as if launched at login--meaning they execute .bash_profile / .bashrc. Fortunately, by default, nested tmux sessions are not allowed, but wrap your tmux execution in a conditional to prevent the pane from

Re: Cursor Color/Style not resetting when switching panes/windows

2013-06-02 Thread simfox3
(tty_term_has(tty->term, TTYC_SE)) > > + tty_raw(tty, tty_term_string(tty->term, TTYC_SE)); > > else > > - tty_raw(tty, tty_term_string1(tty->term, TTYC_CS1, > 0)); > > + tty_raw(tty, tty_te

Re: Cursor Color/Style not resetting when switching panes/windows

2013-06-01 Thread simfox3
quot;0 q" if that's what works for you. If tmux dies > then tell me exactly what steps you have done. > > tmux will only send ANY cursor sequences when a pane has requested one, > so that's why it doesn't change until you try to change the style. > > >

Re: Cursor Color/Style not resetting when switching panes/windows

2013-06-01 Thread simfox3
q:Csr=\E[2 q,screen*:XT" On Sat, Jun 1, 2013 at 12:24 AM, Nicholas Marriott < nicholas.marri...@gmail.com> wrote: > It was merged. If you use the DCS \ePtmux;...\e\\ escaping then it won't > work, that makes tmux pass the cursor sequences through without > tracking them. >

Cursor Color/Style not resetting when switching panes/windows

2013-05-31 Thread simfox3
Hi All, In VIM, my normal mode cursor is a block, like most of you I presume. If I switch panes or windows while in normal mode, the cursor style (block) comes along for the ride. Sure, I could issue a simple escape sequence (echo -ne "\e[5 q") to reset it to the vertical line, but wouldn't it be