Re: xterm title stack support

2013-02-21 Thread Kresimir Kukulj
On 02/21/13 11:22, Nicholas Marriott wrote: > On Thu, Feb 21, 2013 at 10:55:48AM +0100, Kresimir Kukulj wrote: >> Thanks, >> >> I have looked up to xterm's support and its not too complicated. >> >> Also, ESCk sequence to set tmux window title is tmux specific ? >> [window-status-format "#W"] >> If

Re: xterm title stack support

2013-02-21 Thread Nicholas Marriott
On Thu, Feb 21, 2013 at 11:49:16AM +0100, Kresimir Kukulj wrote: > On 02/21/13 11:22, Nicholas Marriott wrote: > >On Thu, Feb 21, 2013 at 10:55:48AM +0100, Kresimir Kukulj wrote: > >>Thanks, > >> > >>I have looked up to xterm's support and its not too complicated. > >> > >>Also, ESCk sequence to se

Re: xterm title stack support

2013-02-21 Thread Kresimir Kukulj
Thanks, I have looked up to xterm's support and its not too complicated. Also, ESCk sequence to set tmux window title is tmux specific ? [window-status-format "#W"] If so, are they documented anywhere ? echo -ne "\033kTITLE\033\\" My goal is to replace multi-tabed terminal with plain terminal+t

Re: xterm title stack support

2013-02-21 Thread Nicholas Marriott
On Thu, Feb 21, 2013 at 10:55:48AM +0100, Kresimir Kukulj wrote: > Thanks, > > I have looked up to xterm's support and its not too complicated. > > Also, ESCk sequence to set tmux window title is tmux specific ? > [window-status-format "#W"] > If so, are they documented anywhere ? It came from s

Re: xterm title stack support

2013-02-21 Thread Nicholas Marriott
Not terribly difficult. Internally tmux just needs to record the old titles on a list and provide the push/pop sequences. Externally is even easier - we just need to send the push sequence when tmux starts and pop when it exits. No particular plans to do it soon though. On Thu, Feb 21, 2013 at 0

xterm title stack support

2013-02-20 Thread Kresimir Kukulj
Hi, I see this item in TODO file: - support title stack, both internally and externally http://docs.freebsd.org/cgi/getmsg.cgi?fetch=1149299+0+archive/2010/freebsd-questions/20100207.freebsd-questions How difficult is to implement that ? Are there any plans to implement that in near future? --