Config issue

2011-09-21 Thread craig lister
Hi, Any ideas on why this script :- #!/bin/sh tmux new-session -d -s itmult sleep 2 tmux neww -a -n win1 'ssh -X freddy@fred' tmux neww -a -n win2 'ssh -X freddy@fred1' tmux set-option -w -t itmult:win1 default-terminal xterm tmux set-option -w -t itmult:win2 default-terminal xterm tmux select-w

find-window to find through only window names

2011-09-21 Thread Avatar
Hi How can I do function find-window to find through only windows names? Now is, quote: Search for the fnmatch(3) pattern match-string in window names, titles, and visible content (but not history). -- Rgrds, Pavel Morozov

Re: sporadic CPU burning on ioctl(401, FIONREAD, [0]) in evbuffer_read

2011-09-21 Thread marcel partap
This is weird indeed ^^ Can you send "tmux info" output? Yes we can C: tmux 1.6, pid 8196, started Sat Sep 17 04:32:41 2011 socket path /tmp/tmux-0/default, debug level 0 system is Linux 3.1.0-rc4-00131-g9e79e3e #27 SMP PREEMPT Thu Sep 1 12:05:51 CEST 2011 x86_64 configuration file is /root/.t

Re: find-window to find through only window names

2011-09-21 Thread Nicholas Marriott
Nope not possible, someone could add a flag if they felt like it :-). On Wed, Sep 21, 2011 at 02:13:38PM +0400, Avatar wrote: > Hi > > How can I do function find-window to find through only windows names? > Now is, quote: Search for the fnmatch(3) pattern match-string in > window names, titles, a

Re: Config issue

2011-09-21 Thread Nicholas Marriott
default-terminal is a session option not a window option, so -w is wrong. In tmux 1.5 you don't need -w or anything, tmux will guess what type of option it is correctly. On Wed, Sep 21, 2011 at 08:04:44PM +1000, craig lister wrote: >Hi, > >Any ideas on why this script :- > >#!/bin/