tmux window title on top

2012-04-30 Thread Sinbad
I just started exploring tmux, i was a long time screen user.
though screen was sufficient for all my practical purposes,
wanted to give tmux a try and here i am 'up and running on
tmux' ;).

how do i move the window title bar location from bottom to
top, this is one thing i always wanted in screen, but screen
couldn't do that, can tmux ?

cheers

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


tmux equivalent of screen's readbuf

2012-04-30 Thread Sinbad
i use readbuf extensively in screen to tunnel text from shell to the screen.
what's the equivalent command in tmux ?

cheers

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: tmux window title on top

2012-05-01 Thread Sinbad
On Tue, May 1, 2012 at 11:49 AM, Nicholas Marriott
 wrote:
> set -g status-position top
>
>
> On Tue, May 01, 2012 at 10:26:48AM +0530, Sinbad wrote:
>> I just started exploring tmux, i was a long time screen user.
>> though screen was sufficient for all my practical purposes,
>> wanted to give tmux a try and here i am 'up and running on
>> tmux' ;).
>>
>> how do i move the window title bar location from bottom to
>> top, this is one thing i always wanted in screen, but screen
>> couldn't do that, can tmux ?
>>
>> cheers
>>
>> --
>> Live Security Virtual Conference
>> Exclusive live event will cover all the ways today's security and
>> threat landscape has changed and how IT managers can respond. Discussions
>> will include endpoint security, mobile security and the latest in malware
>> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>> ___
>> tmux-users mailing list
>> tmux-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/tmux-users

it says unknown option status-position, i am running tmux 1.6

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


load a string to paste buffer

2012-05-01 Thread Sinbad
how do i copy a string to tmux paste buffer from bash script.
i'm looking for something like this,

tmux readbuf < "string"

tmux writebuf   #which will dump the read-contents on to the active window.

how do i do that.

cheers

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: load a string to paste buffer

2012-05-02 Thread Sinbad
On Wed, May 2, 2012 at 3:02 PM, Sinbad  wrote:
> On Wed, May 2, 2012 at 2:23 PM, Nicholas Marriott
>  wrote:
>> You have an alias or something for tmux.
>>
>>
>> On Wed, May 02, 2012 at 01:00:51PM +0530, Sinbad wrote:
>>> On Wed, May 2, 2012 at 11:50 AM, Nicholas Marriott
>>>  wrote:
>>> > echo string|tmux loadb -, tmux pasteb
>>> >
>>> > Or just use tmux send-keys
>>> >
>>> >
>>> > On Wed, May 02, 2012 at 11:25:52AM +0530, Sinbad wrote:
>>> >> how do i copy a string to tmux paste buffer from bash script.
>>> >> i'm looking for something like this,
>>> >>
>>> >> tmux readbuf < "string"
>>> >>
>>> >> tmux writebuf ? #which will dump the read-contents on to the active 
>>> >> window.
>>> >>
>>> >> how do i do that.
>>> >>
>>> >> cheers
>>> >>
>>> >> --
>>> >> Live Security Virtual Conference
>>> >> Exclusive live event will cover all the ways today's security and
>>> >> threat landscape has changed and how IT managers can respond. Discussions
>>> >> will include endpoint security, mobile security and the latest in malware
>>> >> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>>> >> ___
>>> >> tmux-users mailing list
>>> >> tmux-users@lists.sourceforge.net
>>> >> https://lists.sourceforge.net/lists/listinfo/tmux-users
>>>
>>> when i run this command inside tmux in bash shell, i am getting the
>>> following error.
>>>
>>> echo one | tmux loadb -
>>>
>>> sessions should be nested with care. unset $TMUX to force.
>>> -bash: export: `-': not a valid identifier
>
> yes, i have an alias, i am a non-root user, so i compiled in my local
> direcotory.
> and have a path to the tmux binary. along with that i'm also setting one of 
> bash
> ENV variable. my alias is as follows.
>
> alias tmux="/usr/home/sinbad/bin/tmux; export MUX='tmux'"

I found the flaw, my alias is screwed up. thanks for pointing it out Nicholas.

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: tmux window title on top

2012-05-02 Thread Sinbad
On Wed, May 2, 2012 at 11:48 AM, Nicholas Marriott
 wrote:
> You will have to run tmux from the SVN repo.
>
> On Wed, May 02, 2012 at 10:08:23AM +0530, Sinbad wrote:
>> On Tue, May 1, 2012 at 11:49 AM, Nicholas Marriott
>>  wrote:
>> > set -g status-position top
>> >
>> >
>> > On Tue, May 01, 2012 at 10:26:48AM +0530, Sinbad wrote:
>> >> I just started exploring tmux, i was a long time screen user.
>> >> though screen was sufficient for all my practical purposes,
>> >> wanted to give tmux a try and here i am 'up and running on
>> >> tmux' ;).
>> >>
>> >> how do i move the window title bar location from bottom to
>> >> top, this is one thing i always wanted in screen, but screen
>> >> couldn't do that, can tmux ?
>> >>
>> >> cheers
>> >>
>> >> --
>> >> Live Security Virtual Conference
>> >> Exclusive live event will cover all the ways today's security and
>> >> threat landscape has changed and how IT managers can respond. Discussions
>> >> will include endpoint security, mobile security and the latest in malware
>> >> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>> >> ___
>> >> tmux-users mailing list
>> >> tmux-users@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/tmux-users
>>
>> it says unknown option status-position, i am running tmux 1.6

any idea when the official tmux 1.7 be released ?

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


new line problem in displayed output

2012-05-06 Thread Sinbad
hi,

in my tmux session, the output of a program is garbled.

The following is the expected output.

[shell]#display entry

groupTypeMin duration State
-
one  internalone-year running
[shell]#

But the actual output is as follows, clearly the carriag-return does't seem
to be happening properly inside tmux. Is there any setting i need to
enable. I am running
tmux from putty. The same program if i run from outside tmux, the output is
fine.
so, we can rule out any problem from the program. has anyone faced the same
problem ?

[shell]#display entry
groupTypeMin-duration State
-
one  internalone-year running  [shell]#
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: new line problem in displayed output

2012-05-06 Thread Sinbad
On Sun, May 6, 2012 at 1:20 PM, Nicholas Marriott <
nicholas.marri...@gmail.com> wrote:

> What is TERM set to outside tmux? Show me the output of "tmux info".
>
> Also run your program in script(1) inside and outside tmux and send me
> the two typescript files.
>
>
>
> On Sun, May 06, 2012 at 01:12:53PM +0530, Sinbad wrote:
> >hi,
> >
> >in my tmux session, the output of a program is garbled.
> >
> >The following is the expected output.
> >
> >[shell]#display entry
> >
> >group * * * *Type * * * *Min duration State * * * * * * *
> >-
> >one * * * * *internal * *one-year * * running * * *
> >[shell]#
> >
> >But the actual output is as follows, clearly the carriag-return does't
> >seem
> >to be happening properly inside tmux. Is there any setting i need to
> >enable. I am running
> >tmux from putty. The same program if i run from outside tmux, the
> output
> >is fine.
> >so, we can rule out any problem from the program. has anyone faced the
> >same
> >problem ?
> >
> >[shell]#display entry
> >group * * * *Type * * * *Min-duration State * * * * * * *
> >-
> >one * * * * *internal * *one-year * * running * * * * * * *[shell]#
>
> >
> --
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>
> > ___
> > tmux-users mailing list
> > tmux-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/tmux-users
>
>
here is the tmux info output.

actually here is one more piece of information, from tmux
i am connecting to another device, to run the display command.

when i connect to this other device from "csh" i'm not seeing the problem,
but if i run from bash, i can see the problem even without running tmux, so
i guess
this is not tmux problem either, but your inputs are welcome, please
continue to do so ...

Terminals:
xterm-256color [references=1, flags=0x1]:
1: acsc: (string) ``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~
0: AX: [missing]
2: bel: (string) \007
3: blink: (string) \033[5m
4: bold: (string) \033[1m
5: Cc: (string) \033]12;%p1%s\007
6: civis: (string) \033[?25l
7: clear: (string) \033[H\033[2J
8: cnorm: (string) \033[?12l\033[?25h
9: colors: (number) 256
10: Cr: (string) \033]112\007
11: Cs: (string) \033[%p1%d q
12: csr: (string) \033[%i%p1%d;%p2%dr
13: Csr: (string) \033[2 q
14: cub: (string) \033[%p1%dD
15: cub1: (string) \010
16: cud: (string) \033[%p1%dB
17: cud1: (string) \012
18: cuf: (string) \033[%p1%dC
19: cuf1: (string) \033[C
20: cup: (string) \033[%i%p1%d;%p2%dH
21: cuu: (string) \033[%p1%dA
22: cuu1: (string) \033[A
23: dch: (string) \033[%p1%dP
24: dch1: (string) \033[P
25: dim: [missing]
26: dl: (string) \033[%p1%dM
27: dl1: (string) \033[M
28: E3: [missing]
29: el: (string) \033[K
30: el1: (string) \033[1K
31: enacs: (string) \033(B\033)0
32: fsl: (string) \007
33: home: (string) \033[H
34: hpa: (string) \033[%i%p1%dG
35: ich: (string) \033[%p1%d@
36: ich1: [missing]
37: il: (string) \033[%p1%dL
38: il1: (string) \033[L
39: invis: (string) \033[8m
40: is1: [missing]
41: is2: (string) \033[!p\033[?3;4l\033[4l\033>
42: is3: [missing]
43: kcbt: (string) \033[Z
44: kcub1: (string) \033OD
45: kcud1: (string) \033OB
46: kcuf1: (string) \033OC
47: kcuu1: (string) \033OA
48: kDC: (string) \033[3;2~
49: kDC3: [missing]
50: kDC4: [missing]
51: kDC5: [missing]
52: kDC6: [missing]
53: kDC7: [missing]
54: kdch1: (string) \033[3~
55: kDN: [missing]
56: kDN3: [missing]
57: kDN4: [missing]
58: kDN5: [missing]
59: kDN6: [missing]
60: kDN7: [missing]
61: kend: (string) \033OF
62: kEND: (string) \033[1;2F
63: kEND3: [missing]
64: kEND4: [missing]
65: kEND5: [missing]
66: kEND6: [missing]
67: kEND7: [missing]
68: kf1: (string) \033OP
69: kf10: (string) \033[21~
70: kf11: (string) \033[23~
71: kf12: (string) \033[24~
72: kf13: (string) \033O2P
73: kf14: (string) \033O2Q
74: kf15: (string) \033O2R
75: kf16: (string) \033O2S
76: kf17: (string) \033[15;2~
77: kf18: (string) \033[17;2~
78: kf19: (string) \033[18;2~
79: kf2: (string) \033OQ
80: kf20: (string) \033[19;2~
81: kf3: (string) \033OR
82: kf4: (string) \033OS
83: kf5: (string) \033[15~
84: kf6: (string) \033[17~
85: kf7: (string) \033[18~
86: kf8: (string) 

Re: tmux window title on top

2012-05-06 Thread Sinbad
> On 2 May 2012, at 05:38, Sinbad wrote:
>> On Tue, May 1, 2012 at 11:49 AM, Nicholas Marriott
>>  wrote:
>> set -g status-position top
>>
>> it says unknown option status-position, i am running tmux 1.6

> 3rd Google hit for "tmux status-position":

> "This will be included in tmux 1.7"


is there any patch specifically for this, i don't wanna take 1.7 unless it
is stable official release.
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: new line problem in displayed output

2012-05-06 Thread Sinbad
On Mon, May 7, 2012 at 2:25 AM, Nicholas Marriott <
nicholas.marri...@gmail.com> wrote:

> This is not the full tmux info output, but it doesn't matter. Without
> any script output we can't see what your program is doing anyway.
>

Hi Nicholas,

script output:

Script started on Sun 06 May 2012 08:49:22 PM PDT
sinbad@bara^[[0;36m[<>]# ^[[0mdevice.mcn ^M
spawn telnet device.mcn^M^M^M
Trying 10.12.1.30...^M^M^M
Connected to device.mcn.^M^M^M
Escape character is '^]'.^M^M^M
login: sinbad^M^M
Password: ^M^M
[local]device.mcn>ena^M^M
Password: ^M
[local]device.mcn#display entry^M
Flags:   R - Remote state   W - Wildcard state^M
^M
centry  IdentifierState   FlagOutlet^M
5.5.5.5 5.5.5.5:0 run W   l^M
7.7.7.7 7.7.7.7:0 run W   r^M
[local]device.mcn#exit
Connection closed by foreign host.^M^M
sinbad@bara^[[0;36m[<>]# ^[[0mexit^M
exit^M

Script done on Sun 06 May 2012 08:49:36 PM PDT

The above is the script output, from tmux i'm connecting to another
device through telnet, In the above, the problem output is

[local]device.mcn#display entry^M
Flags:   U - Unknown state   W - Wildcard state^M
^M
centry  IdentifierState   FlagOutlet^M

It should have been as follows, w - wildcard state should come in a newline.
it works fine if i connect from "csh", as i said before, i'm seeing the
problem
even if i don't use tmux and telnet it from a bash shell rather than "csh",
but seeking help from you experts to solve it.

[local]device.mcn#display entry
Flags:   U - Unknown state
 W - Wildcard state

centry  IdentifierState   FlagOutlet


complete tmux info output:

sinbad@login# tmux info
tmux 1.6, pid 4226, started Mon Apr 30 01:39:42 2012
socket path /tmp/tmux-95838/default, debug level 0
system is Linux 2.6.18-92.el5 #1 SMP Tue Apr 29 13:16:15 EDT 2008 x86_64
configuration file is /home/sinbad/.tmux.conf
protocol version is 6

Clients:
0: /dev/pts/75 (10, 12): new [207x60 xterm-256color bs=177]
[flags=0x1/0x38, references=0]

 Sessions: [5/10]
 0: new: 9 windows (created Mon Apr 30 01:39:42
2012) [207x59] [flags=0x0]
 1: bash [207x59] [flags=0x8, references=1, last
layout=-1]
 0: /dev/pts/47 11992 17 3957/3984, 1524720 bytes;
UTF-8 0/3984, 0 bytes
 2: bash [207x59] [flags=0x8, references=1, last
layout=0]
 0: /dev/pts/22 4256 14 3947/4002, 2094075 bytes;
UTF-8 0/4002, 0 bytes
 3: bash [207x59] [flags=0x8, references=1, last
layout=2]
 0: /dev/pts/25 4284 15 3838/3839, 1255295 bytes;
UTF-8 0/3839, 0 bytes
 4: bash [207x59] [flags=0x8, references=1, last
layout=0]
 0: /dev/pts/10 13012 13 7400/7469, 2508660 bytes;
UTF-8 0/7469, 0 bytes
 5: device [207x59] [flags=0x8, references=1, last
layout=-1]
 0: /dev/pts/65 14545 8 7364/7475, 2313155 bytes;
UTF-8 0/7475, 0 bytes
 6: bash [207x59] [flags=0x8, references=1, last
layout=-1]
 0: /dev/pts/72 14704 9 5261/5294, 2184180 bytes;
UTF-8 0/5294, 0 bytes
 7: bash [207x59] [flags=0x8, references=1, last
layout=-1]
 0: /dev/pts/105 9037 19 513/588, 82120 bytes;
UTF-8 0/588, 0 bytes
 8: bash [207x59] [flags=0x8, references=1, last
layout=-1]
 0: /dev/pts/19 18622 20 7661/7670, 4327630 bytes;
UTF-8 0/7670, 0 bytes
 9: bash [207x59] [flags=0x8, references=1, last
layout=-1]
 0: /dev/pts/51 15181 21 3887/3891, 1716065 bytes;
UTF-8 10/3891, 5430 bytes
 Terminals:
 xterm-256color [references=1, flags=0x1]:
 1: acsc: (string)
``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~
 0: AX: [missing]
 2: bel: (string) \007
 3: blink: (string) \033[5m
 4: bold: (string) \033[1m
 5: Cc: (string) \033]12;%p1%s\007
 6: civis: (string) \033[?25l
 7: clear: (string) \033[H\033[2J
 8: cnorm: (string) \033[?12l\033[?25h
 9: colors: (number) 256
 10: Cr: (string) \033]112\007
 11: Cs: (string) \033[%p1%d q
 12: csr: (string) \033[%i%p1%d;%p2%dr
 13: Csr: (string) \033[2 q
 14: cub: (string) \033[%p1%dD
 15: cub1: (string) \010
  

binding from inside a bash function

2012-05-07 Thread Sinbad
i'm trying to configure a bind key through a bash shell. But it is not
working.
here is my binding in a bash function.

   tmux bind-key b send-keys "run_command"

how do i do that.

cheers
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: binding from inside a bash function

2012-05-07 Thread Sinbad
On Mon, May 7, 2012 at 5:24 PM, Sinbad  wrote:

> i'm trying to configure a bind key through a bash shell. But it is not
> working.
> here is my binding in a bash function.
>
>tmux bind-key b send-keys "run_command"
>
> how do i do that.
>
> cheers
>
>
>
when i say bash shell, i mean, from inside a bash function;

cheers
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: binding from inside a bash function

2012-05-07 Thread Sinbad
On Mon, May 7, 2012 at 7:21 PM, Ivan Nečas  wrote:

>  On 05/07/2012 03:32 PM, Sinbad wrote:
>
> On Mon, May 7, 2012 at 5:24 PM, Sinbad  wrote:
>
> i'm trying to configure a bind key through a bash shell. But it is not
> working.
> here is my binding in a bash function.
>
> tmux bind-key b send-keys "run_command"
>
>  how do i do that.
>
>  cheers
>
>
>
> when i say bash shell, i mean, from inside a bash function;
>
>  Well, this command works for me. I'm using C-m at the end to simulate
> enter, but otherwise it's the same as your version.
>
> tmux bind-key b send-keys "run_command" C-m
>
> Do you get some ouput/message at least?
>
> -- Ivan
>
> cheers
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>
>
>
> ___
> tmux-users mailing 
> listtmux-users@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/tmux-users
>
>
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> tmux-users mailing list
> tmux-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/tmux-users
>
>
here is how i defined the bind command, yes there is ^M.

function tmux_rtr_binds() {
tmux bind-key l send-keys "run_command ^M"
}

i am getting the following errors.

"nknown command: bind-key b send-keys "run_command
unknown key:  send-keys
unknown key: ;send-keys
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


scripting support for tmux

2012-05-08 Thread Sinbad
is there a plan to add scripting support for tmux.
i am specifically looking for 'expect' kind of support.
it will be helpful when a program is not being run from
a shell. most of my work will rely on logging into remote
hardware deivces like network switches and doing some stuff
there, where i have minimal support from the shell. if tmux
can provide such support it'll be great.
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Fwd: scripting support for tmux

2012-05-10 Thread Sinbad
-- Forwarded message --
From: Sinbad 
Date: Fri, May 11, 2012 at 9:24 AM
Subject: Re: scripting support for tmux
To: Nicholas Marriott 


On Wed, May 9, 2012 at 12:03 PM, Nicholas Marriott <
nicholas.marri...@gmail.com> wrote:

> No, no plans, although you could be more specific on what you want to
> do.
>
>
> On Wed, May 09, 2012 at 11:33:44AM +0530, Sinbad wrote:
> >is there a plan to add scripting support for tmux.
> >i am specifically looking for 'expect' kind of support.
> >it will be helpful when a program is not being run from
> >a shell. most of my work will rely on logging into remote
> >hardware deivces like network switches and doing some stuff
> >there, where i have minimal support from the shell. if tmux
> >can provide such support it'll be great.
>
> >
> --
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>
> > ___
> > tmux-users mailing list
> > tmux-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/tmux-users
>
>
may be i'm alone in this, but most of the times i will log into
a switch, where i will have to configure loads of things.
like 100 interfaces, in which each interface configuration
will take "three configuration steps", so for 100 interfaces
it's 300 cli commands. this is just one case, there are
several others like this. I know, i can store the configuration
somewhere in the text file and copy paste the stuff, but that
might become tedious if i want to change certain values in the
configuration. Instead if i have script support, i can write
a function which takes these values and configure the
commands for me. I hope you get the idea.

cheers
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


tmux slow in changing the window

2012-05-14 Thread Sinbad
tmux doesn't change the window or is not quick, when the current
window is emitting lot of output to stdout, generally when compiling
big modules, lot of output will be emitted continuously, during this
time i've observed tmux is not able to change to other window, some
times i even have to detach the session and attach again. has anyone
else seen the same problem.

cheers
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: tmux slow in changing the window

2012-05-15 Thread Sinbad
On Tue, May 15, 2012 at 12:23 PM, Thomas Adam  wrote:

> Rate limiting support to help with this problem, was added to tmux
> recently. Again, you'll need to use svn, something you seem reluctant to do?
>
> -- Thomas Adam
> On May 15, 2012 7:34 AM, "Sinbad"  wrote:
>
>> tmux doesn't change the window or is not quick, when the current
>> window is emitting lot of output to stdout, generally when compiling
>> big modules, lot of output will be emitted continuously, during this
>> time i've observed tmux is not able to change to other window, some
>> times i even have to detach the session and attach again. has anyone
>> else seen the same problem.
>>
>> cheers
>>
>>
>>
>> --
>> Live Security Virtual Conference
>> Exclusive live event will cover all the ways today's security and
>> threat landscape has changed and how IT managers can respond. Discussions
>> will include endpoint security, mobile security and the latest in malware
>> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>> ___
>> tmux-users mailing list
>> tmux-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/tmux-users
>>
>>
i've never used svn. in one of my last query you posted a link for a patch
for "status-position" feat. while compiling that code i faced some
compilation errors. i tried fixing, but didn't work. let me try it again.

cheers.
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


git svn pull latest code

2012-05-17 Thread Sinbad
i'm trying to pull latest tmux code from git.
when i run "git svn clone " it is fetching
all the revisions, how can i just pull the latest
snapshot of the code without getting revision
history. i did some googling, and found that
git's depth option can be used, but depth option
is not supported in git-svn, is there any other
way just to pull the latest code using git.

cheers
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: git svn pull latest code

2012-05-19 Thread Sinbad
On Thu, May 17, 2012 at 1:36 PM, Thomas Adam  wrote:

> On 17 May 2012 08:55, Sinbad  wrote:
> > i'm trying to pull latest tmux code from git.
> > when i run "git svn clone " it is fetching
> > all the revisions, how can i just pull the latest
> > snapshot of the code without getting revision
> > history. i did some googling, and found that
> > git's depth option can be used, but depth option
> > is not supported in git-svn, is there any other
> > way just to pull the latest code using git.
>
> See:
>
> https://github.com/ThomasAdam/tmux
>
> -- Thomas Adam
>

the code i pulled from git doesn't have configure script.
how do i build this ?
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: git svn pull latest code

2012-05-19 Thread Sinbad
On Sun, May 20, 2012 at 9:44 AM, Sinbad  wrote:

> On Thu, May 17, 2012 at 1:36 PM, Thomas Adam  wrote:
>
>> On 17 May 2012 08:55, Sinbad  wrote:
>> > i'm trying to pull latest tmux code from git.
>> > when i run "git svn clone " it is fetching
>> > all the revisions, how can i just pull the latest
>> > snapshot of the code without getting revision
>> > history. i did some googling, and found that
>> > git's depth option can be used, but depth option
>> > is not supported in git-svn, is there any other
>> > way just to pull the latest code using git.
>>
>> See:
>>
>> https://github.com/ThomasAdam/tmux
>>
>> -- Thomas Adam
>>
>
> the code i pulled from git doesn't have configure script.
> how do i build this ?
>

i managed to copy this latest code pulled from git-svn to
my existing tmux 1.6 build folder, hoping it would compile.
i'mg getting the following errors.

cmd-attach-session.o: In function `cmd_attach_session_exec':
cmd-attach-session.c:(.text+0x156): undefined reference to
`notify_attached_session_changed'
cmd-attach-session.c:(.text+0x256): undefined reference to
`notify_attached_session_changed'
cmd-join-pane.o: In function `join_pane':
cmd-join-pane.c:(.text+0x436): undefined reference to
`notify_window_layout_changed'
cmd-join-pane.c:(.text+0x528): undefined reference to
`notify_window_layout_changed'
cmd-new-session.o: In function `cmd_new_session_exec':
cmd-new-session.c:(.text+0x728): undefined reference to
`notify_attached_session_changed'
cmd-new-session.c:(.text+0x798): undefined reference to
`notify_attached_session_changed'
cmd-new-window.o: In function `cmd_new_window_exec':
cmd-new-window.c:(.text+0x1b0): undefined reference to
`notify_window_unlinked'
cmd-rename-session.o: In function `cmd_rename_session_exec':
cmd-rename-session.c:(.text+0x117): undefined reference to
`notify_session_renamed'
cmd-split-window.o: In function `cmd_split_window_exec':

can some please tell me, when tmux 1.7 is scheduled to be released, if it's
not far off,
i'd rather wait than going through all this. TA, hope you'd understand,
what i'm going
through ..
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: git svn pull latest code

2012-05-20 Thread Sinbad
On Sun, May 20, 2012 at 1:19 PM, Thomas Adam  wrote:

> Hi,
>
> Stop buggering about. There's an autogen.sh script you need to run to
> generate that.
> On May 20, 2012 5:19 AM, "Sinbad"  wrote:
>
>>
>> On Sun, May 20, 2012 at 9:44 AM, Sinbad  wrote:
>>
>>> On Thu, May 17, 2012 at 1:36 PM, Thomas Adam  wrote:
>>>
>>>> On 17 May 2012 08:55, Sinbad  wrote:
>>>> > i'm trying to pull latest tmux code from git.
>>>> > when i run "git svn clone " it is fetching
>>>> > all the revisions, how can i just pull the latest
>>>> > snapshot of the code without getting revision
>>>> > history. i did some googling, and found that
>>>> > git's depth option can be used, but depth option
>>>> > is not supported in git-svn, is there any other
>>>> > way just to pull the latest code using git.
>>>>
>>>> See:
>>>>
>>>> https://github.com/ThomasAdam/tmux
>>>>
>>>> -- Thomas Adam
>>>>
>>>
>>> the code i pulled from git doesn't have configure script.
>>> how do i build this ?
>>>
>>
>> i managed to copy this latest code pulled from git-svn to
>> my existing tmux 1.6 build folder, hoping it would compile.
>> i'mg getting the following errors.
>>
>> cmd-attach-session.o: In function `cmd_attach_session_exec':
>> cmd-attach-session.c:(.text+0x156): undefined reference to
>> `notify_attached_session_changed'
>> cmd-attach-session.c:(.text+0x256): undefined reference to
>> `notify_attached_session_changed'
>> cmd-join-pane.o: In function `join_pane':
>> cmd-join-pane.c:(.text+0x436): undefined reference to
>> `notify_window_layout_changed'
>> cmd-join-pane.c:(.text+0x528): undefined reference to
>> `notify_window_layout_changed'
>> cmd-new-session.o: In function `cmd_new_session_exec':
>> cmd-new-session.c:(.text+0x728): undefined reference to
>> `notify_attached_session_changed'
>> cmd-new-session.c:(.text+0x798): undefined reference to
>> `notify_attached_session_changed'
>> cmd-new-window.o: In function `cmd_new_window_exec':
>> cmd-new-window.c:(.text+0x1b0): undefined reference to
>> `notify_window_unlinked'
>> cmd-rename-session.o: In function `cmd_rename_session_exec':
>> cmd-rename-session.c:(.text+0x117): undefined reference to
>> `notify_session_renamed'
>> cmd-split-window.o: In function `cmd_split_window_exec':
>>
>> can some please tell me, when tmux 1.7 is scheduled to be released, if
>> it's not far off,
>> i'd rather wait than going through all this. TA, hope you'd understand,
>> what i'm going
>> through ..
>>
>>
>>
>>
>> --
>> Live Security Virtual Conference
>> Exclusive live event will cover all the ways today's security and
>> threat landscape has changed and how IT managers can respond. Discussions
>> will include endpoint security, mobile security and the latest in malware
>> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>> ___
>> tmux-users mailing list
>> tmux-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/tmux-users
>>
>>
No body asked you to answer, if you don't like to answer it just ignore it.
This is too much of an attitude for someone who likes teddy bears, Ah ...
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: git svn pull latest code

2012-05-23 Thread Sinbad
On Mon, May 21, 2012 at 9:06 AM, 郭晓峰  wrote:

> git svn clone -s -r HEAD https://tmux.svn.sourceforge.net/svnroot/tmux
>
> "-s" means keeping git understand svn's tags/branches/trunk structure,
> and "-r HEAD" means you just want to check out the latest version.
> Because you use "-s", you can't add "trunk" at the end of the svn
> link.
>
> Hope it helps.
>
> On Thu, May 17, 2012 at 12:55 AM, Sinbad  wrote:
> > i'm trying to pull latest tmux code from git.
> > when i run "git svn clone " it is fetching
> > all the revisions, how can i just pull the latest
> > snapshot of the code without getting revision
> > history. i did some googling, and found that
> > git's depth option can be used, but depth option
> > is not supported in git-svn, is there any other
> > way just to pull the latest code using git.
> >
> > cheers
> >
> >
> >
> --
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > ___
> > tmux-users mailing list
> > tmux-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/tmux-users
> >
>

Hi lamuguo, thanks it helped !
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: tmux slow in changing the window

2012-05-25 Thread Sinbad
On Tue, May 15, 2012 at 12:23 PM, Thomas Adam  wrote:

> Rate limiting support to help with this problem, was added to tmux
> recently. Again, you'll need to use svn, something you seem reluctant to do?
>
> -- Thomas Adam
>

I've updated to the latest code but i'm still seeing some time lag in
changing the windows when lot of text is being printed in the current
window. i see some improvement when text output is only on one window.
It is worse when in more than one window text is printed continuously.
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: tmux slow in changing the window

2012-06-05 Thread Sinbad
On Fri, May 25, 2012 at 2:43 PM, Nicholas Marriott <
nicholas.marri...@gmail.com> wrote:

> You will always see this, they come down the same channel. Fiddling with
> the c0-* options can make it more responsive, but if you make them too
> aggressive it will slow down normal output.
>
>
> On Fri, May 25, 2012 at 02:37:16PM +0530, Sinbad wrote:
> >On Tue, May 15, 2012 at 12:23 PM, Thomas Adam <[1]tho...@xteddy.org>
> >wrote:
> >
> >  Rate limiting support to help with this problem, was added to tmux
> >  recently. Again, you'll need to use svn, something you seem
> reluctant to
> >  do?
> >
> >  -- Thomas Adam
> >
> >I've updated to the latest code but i'm still seeing some time lag in
> >changing the windows when lot of text is being printed in the current
> >window. i see some improvement when text output is only on one window.
> >It is worse when in more than one window text is
> printed*continuously.*
> >
> > References
> >
> >Visible links
> >1. mailto:tho...@xteddy.org
>
> >
> --
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>
> > ___
> > tmux-users mailing list
> > tmux-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/tmux-users
>
>
i've never seen this problem in screen, is there serious design flaw
in tmux ?

> You will always see this, they come down the same channel.

Is there way to employ more channels ?
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


bash text substitution in tmux

2012-08-13 Thread Sinbad
s it possible to enter text into a command by matching
the partial text in the command with the shell output just
like the autocomplete in vim using ctrl-p and ctrl-n.

example:

$some_cmd
some output
words more words
$out
$output

i am not refferring to the command history, i want to be able
to autofill based on the output text.

thanks
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: bash text substitution in tmux

2012-08-14 Thread Sinbad
On Tue, Aug 14, 2012 at 1:09 PM, Thomas Adam  wrote:

> On Tue, Aug 14, 2012 at 05:33:59PM +1000, Stephen Thirlwall wrote:
> > On 14/08/12 5:00 PM, Thomas Adam wrote:
> > > On 14 August 2012 07:19, Stephen Thirlwall  wrote:
> > >> On 14/08/12 10:41 AM, Stephen Thirlwall wrote:
> > >>> [...]
> > >>> I'd be happy to take a look at implementing this.
> > >>
> > >> (replying to myself...)
> > >>
> > >> How about implementing this as a command?
> > >>
> > >>choose-completion [-s source-window] [-t target-window] [template]
> > >
> > > Assuming my choose-list command goes in to tmux, which will provide
> > > the ability to select arbitrary entries from any source, this command
> > > can be scripted.  Thus no need for new code.
> >
> >
> > Sounds good Thomas - I agree that this sort of functionality is better
> > implemented outside of tmux where possible.
> >
> >
> > I've had a poke around in your choose-list branch and have a few
> questions.
> >
> >
> > Can the choose-list command be executed from the command-line?
> >
> > eg. tmux choose-list -l$( generate-list-somehow )
> >
> > I only get a 'must be run interactively' message when I try this. I can
> bind it
> > to a key, but then the input list seems to be fixed at bind-time.
>
> That's due to the window pane being put in a special mode.  I suppose
> lifting that restriction's possible, but needs a bit of thought.
>
> >
> > Also, does tmux have commands to:
> > 1) dump the contents (and history) of a pane?
>
> capture-pane
>
> > 2) find the string under the cursor in a given pane, or even just the
> position
> > of the cursor (possibly as an index into the pane contents above)
>
> No.
>
> -- Thomas Adam
>
>
Does tmux write the output to a file, if so, where is that file stored ?
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


vertical split using join-pane and pane dividers characters.

2012-12-11 Thread Sinbad
how do i vertical split using join-pane command.
and also junk chars are shown as pane dividers
how can i change that. $TERM is set to xterm-256color
both inside and outside tmux. For pane divider i tried
setting export LANG=en_US.UTF-8 as indicated in
other post, it didn't help.

-sinbad
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: vertical split using join-pane and pane dividers characters.

2012-12-16 Thread Sinbad
i have two windows in a tmux session, 1 and 2;
now i want to move the two windows to a single
pane, i am using join-pane -t 1 -s 2, when i
do this i get the horizontal split with the
top window containing the window 1 and bottom
window containing window 2, but instead of that
i need the window to be split vertically.

horizontal:
  1
-
  2

vertical:
 |
  1  | 2
 |



On Thu, Dec 13, 2012 at 12:57 AM, Nicholas Marriott <
nicholas.marri...@gmail.com> wrote:

> On Tue, Dec 11, 2012 at 12:03:40PM +0530, Sinbad wrote:
> >how do i vertical split using join-pane command.
>
> What do you mean?
>
> >and also junk chars are shown as pane dividers
> >how can i change that. $TERM is set to xterm-256color
> >both inside and outside tmux.
>
> This is wrong inside tmux, it should be screen-256color inside.
>
> >For pane divider i tried
> >setting*export LANG=en_US.UTF-8 as indicated in
> >other post, it didn't help.
>
> What terminal are you using?
>
> Did you restart tmux entirely after exporting LANG?
>
>
> >-sinbad
>
> >
> --
> > LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
> > Remotely access PCs and mobile devices and provide instant support
> > Improve your efficiency, and focus on delivering more value-add services
> > Discover what IT Professionals Know. Rescue delivers
> > http://p.sf.net/sfu/logmein_12329d2d
>
> > ___
> > tmux-users mailing list
> > tmux-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/tmux-users
>
>
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: vertical split using join-pane and pane dividers characters.

2012-12-17 Thread Sinbad
i tried -v option, it doesn't work. this is how i am using it.
even with the below command, it always splits horizontally.

:join-pane -v -t 1 -s 2


On Mon, Dec 17, 2012 at 12:38 PM, Thomas Adam  wrote:

> Hi,
>
> On 17 December 2012 06:46, Sinbad  wrote:
> > i have two windows in a tmux session, 1 and 2;
> > now i want to move the two windows to a single
> > pane, i am using join-pane -t 1 -s 2, when i
> > do this i get the horizontal split with the
> > top window containing the window 1 and bottom
> > window containing window 2, but instead of that
> > i need the window to be split vertically.
>
> This is what the '-v' option to joinp does.
>
> -- Thomas Adam
>
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: vertical split using join-pane and pane dividers characters.

2012-12-20 Thread Sinbad
ok, :join-pane -h -t 1 -s 2, did what i was looking for.
i thought -v would give split like

  |
  1  | 2

and -h would split like

  1
-
  2

but it's other way round, i would say the -v and -h
semantics are counter-intuitive.


On Tue, Dec 18, 2012 at 12:11 PM, Thomas Adam  wrote:

> Hi,
>
> On 18 December 2012 06:23, Sinbad  wrote:
> > i tried -v option, it doesn't work. this is how i am using it.
> > even with the below command, it always splits horizontally.
> >
> > :join-pane -v -t 1 -s 2
>
> It does work.  What is it what's not working for you, or more likely,
> what is it you think it's supposed to do and isn't which is what
> you're really trying to ask for?
>
> -- Thomas Adam
>
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


panes slow response in scrolling

2012-12-21 Thread Sinbad
when a window is divided into panes i observed
that the scrolling has become very slow, in
one of the pane i have vim scrolling in vim
has become noticably slow, are there any
configurations i should be doing ?
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: vertical split using join-pane and pane dividers characters.

2012-12-21 Thread Sinbad
> It will be slower but shouldn't be very slow.

why will it be slower ?

> What platform, what terminal, what tmux version, how many panes,

running on linux, terminal is xterm, tmux version is 1.6  with just two
panes. merged two windows using joinp cmd.

> how much slower is it?

i found it to be considerably slow compared to when it is non-paned,
for example when i move up in pages in vim, i see a blank screen for
a moment before the text is redrawn.



On Fri, Dec 21, 2012 at 3:30 PM, Nicholas Marriott <
nicholas.marri...@gmail.com> wrote:

> Vertical is top-bottom split of course, that's obvious, your perception
> of what is intuitive is wrong.
>
>
> On Fri, Dec 21, 2012 at 10:14:24AM +0530, Sinbad wrote:
> >ok, :join-pane -h -t 1 -s 2, did what i was looking for.*
> >i thought -v would give split like*
> >* * * |
> >* 1 *| 2
> >and -h would split like
> >* 1
> >-
> >* 2
> >but it's other way round, i would say the -v and -h*
> >semantics are counter-intuitive.
> >
> >On Tue, Dec 18, 2012 at 12:11 PM, Thomas Adam <[1]tho...@xteddy.org>
> >wrote:
> >
> >  Hi,
> >  On 18 December 2012 06:23, Sinbad <[2]sinbad.sin...@gmail.com>
> wrote:
> >  > i tried -v option, it doesn't work. this is how i am using it.
> >  > even with the below command, it always splits horizontally.
> >  >
> >  > :join-pane -v -t 1 -s 2
> >
> >  It does work. *What is it what's not working for you, or more
> likely,
> >  what is it you think it's supposed to do and isn't which is what
> >  you're really trying to ask for?
> >  -- Thomas Adam
> >
> > References
> >
> >Visible links
> >1. mailto:tho...@xteddy.org
> >2. mailto:sinbad.sin...@gmail.com
>
> >
> --
> > LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
> > Remotely access PCs and mobile devices and provide instant support
> > Improve your efficiency, and focus on delivering more value-add services
> > Discover what IT Professionals Know. Rescue delivers
> > http://p.sf.net/sfu/logmein_12329d2d
>
> > ___
> > tmux-users mailing list
> > tmux-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/tmux-users
>
>
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: vertical split using join-pane and pane dividers characters.

2012-12-21 Thread Sinbad
[ignore previous post]

i'm use to vim, in vim, a vertical split will divide the window
with left and right sub-windows and a horizontal split will have
the window split into top and bottom sub-windows, may be i got
my perception from vim.



On Fri, Dec 21, 2012 at 5:26 PM, Sinbad  wrote:

> > It will be slower but shouldn't be very slow.
>
> why will it be slower ?
>
> > What platform, what terminal, what tmux version, how many panes,
>
> running on linux, terminal is xterm, tmux version is 1.6  with just two
> panes. merged two windows using joinp cmd.
>
> > how much slower is it?
>
> i found it to be considerably slow compared to when it is non-paned,
> for example when i move up in pages in vim, i see a blank screen for
> a moment before the text is redrawn.
>
>
>
> On Fri, Dec 21, 2012 at 3:30 PM, Nicholas Marriott <
> nicholas.marri...@gmail.com> wrote:
>
>> Vertical is top-bottom split of course, that's obvious, your perception
>> of what is intuitive is wrong.
>>
>>
>> On Fri, Dec 21, 2012 at 10:14:24AM +0530, Sinbad wrote:
>> >ok, :join-pane -h -t 1 -s 2, did what i was looking for.*
>> >i thought -v would give split like*
>> >* * * |
>> >* 1 *| 2
>> >and -h would split like
>> >* 1
>> >-
>> >* 2
>> >but it's other way round, i would say the -v and -h*
>> >semantics are counter-intuitive.
>> >
>> >On Tue, Dec 18, 2012 at 12:11 PM, Thomas Adam <[1]tho...@xteddy.org>
>> >wrote:
>> >
>> >  Hi,
>> >  On 18 December 2012 06:23, Sinbad <[2]sinbad.sin...@gmail.com>
>> wrote:
>> >  > i tried -v option, it doesn't work. this is how i am using it.
>> >  > even with the below command, it always splits horizontally.
>> >  >
>> >  > :join-pane -v -t 1 -s 2
>> >
>> >  It does work. *What is it what's not working for you, or more
>> likely,
>> >  what is it you think it's supposed to do and isn't which is what
>> >  you're really trying to ask for?
>> >  -- Thomas Adam
>> >
>> > References
>> >
>> >Visible links
>> >1. mailto:tho...@xteddy.org
>> >2. mailto:sinbad.sin...@gmail.com
>>
>> >
>> --
>> > LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
>> > Remotely access PCs and mobile devices and provide instant support
>> > Improve your efficiency, and focus on delivering more value-add services
>> > Discover what IT Professionals Know. Rescue delivers
>> > http://p.sf.net/sfu/logmein_12329d2d
>>
>> > ___
>> > tmux-users mailing list
>> > tmux-users@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/tmux-users
>>
>>
>
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: panes slow response in scrolling

2012-12-21 Thread Sinbad
> It will be slower but shouldn't be very slow.

why will it be slower ?

> What platform, what terminal, what tmux version, how many panes,

running on linux, terminal is xterm, tmux version is 1.6  with just two
panes. merged two windows using joinp cmd.

> how much slower is it?

i found it to be considerably slow compared to when it is non-paned,
for example when i move up in pages in vim, i see a blank screen for
a moment before the text is redrawn.


On Fri, Dec 21, 2012 at 3:28 PM, Nicholas Marriott <
nicholas.marri...@gmail.com> wrote:

> It will be slower but shouldn't be very slow, give some more information
> please. What platform, what terminal, what tmux version, how many panes,
> how much slower is it?
>
>
> On Fri, Dec 21, 2012 at 02:24:57PM +0530, Sinbad wrote:
> >when a window is divided into panes i observed
> >that the scrolling has become very slow, in
> >one of the pane i have vim scrolling in vim
> >has become noticably slow, are there any
> >configurations i should be doing ?
>
> >
> --
> > LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
> > Remotely access PCs and mobile devices and provide instant support
> > Improve your efficiency, and focus on delivering more value-add services
> > Discover what IT Professionals Know. Rescue delivers
> > http://p.sf.net/sfu/logmein_12329d2d
>
> > ___
> > tmux-users mailing list
> > tmux-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/tmux-users
>
>
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


join pane with last active window

2012-12-21 Thread Sinbad
how can i join pane with the last window
i've been to as the source window.
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: panes slow response in scrolling

2013-01-13 Thread Sinbad
is there  any terminal that can support split window
scrolling natively ? the pane performance is too
slow, not able to enjoy the panes :)


On Fri, Dec 21, 2012 at 5:27 PM, Sinbad  wrote:

> > It will be slower but shouldn't be very slow.
>
> why will it be slower ?
>
> > What platform, what terminal, what tmux version, how many panes,
>
> running on linux, terminal is xterm, tmux version is 1.6  with just two
> panes. merged two windows using joinp cmd.
>
> > how much slower is it?
>
> i found it to be considerably slow compared to when it is non-paned,
> for example when i move up in pages in vim, i see a blank screen for
> a moment before the text is redrawn.
>
>
> On Fri, Dec 21, 2012 at 3:28 PM, Nicholas Marriott <
> nicholas.marri...@gmail.com> wrote:
>
>> It will be slower but shouldn't be very slow, give some more information
>> please. What platform, what terminal, what tmux version, how many panes,
>> how much slower is it?
>>
>>
>> On Fri, Dec 21, 2012 at 02:24:57PM +0530, Sinbad wrote:
>> >when a window is divided into panes i observed
>> >that the scrolling has become very slow, in
>> >one of the pane i have vim scrolling in vim
>> >has become noticably slow, are there any
>> >configurations i should be doing ?
>>
>> >
>> --
>> > LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
>> > Remotely access PCs and mobile devices and provide instant support
>> > Improve your efficiency, and focus on delivering more value-add services
>> > Discover what IT Professionals Know. Rescue delivers
>> > http://p.sf.net/sfu/logmein_12329d2d
>>
>> > ___
>> > tmux-users mailing list
>> > tmux-users@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/tmux-users
>>
>>
>
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122412___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: panes slow response in scrolling

2013-01-16 Thread Sinbad
Not that i know of, how do i crosscheck that ?


On Tue, Jan 15, 2013 at 10:12 AM, Nicholas Marriott <
nicholas.marri...@gmail.com> wrote:

> I use split panes all the time and they are fine. Are you using a fancy
> FreeType face (xterm -fa instead of -fn)? Is it the same in xterm
> without any of your config?
>
>
>
--
Master Java SE, Java EE, Eclipse, Spring, Hibernate, JavaScript, jQuery
and much more. Keep your Java skills current with LearnJavaNow -
200+ hours of step-by-step video tutorials by Java experts.
SALE $49.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122612 ___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


window size change.

2013-01-16 Thread Sinbad
when i disconnect my laptop from the docking station
while tmux is running and connect it back, i see that
the screen size has reduced, and the junk characters
are displayed in the unused space, how do i change the
screen size to back. the size is [197x50] it should be
[207x59]

$ tmux list-session
1: 9 windows (created Tue Jan 15 02:34:23 2013) [197x50] (attached)
--
Master Java SE, Java EE, Eclipse, Spring, Hibernate, JavaScript, jQuery
and much more. Keep your Java skills current with LearnJavaNow -
200+ hours of step-by-step video tutorials by Java experts.
SALE $49.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122612 ___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: panes slow response in scrolling

2013-01-16 Thread Sinbad
i just connect from windows machine using putty to one of the
servers running linux. the echo $TERM shows xterm-256color,
so i thought terminal is xterm, i'm a non root user, in my home
i don't find .Xdefaults/.Xresources, i don't really know what
terminal i'm running, pardon my ignorance.


On Thu, Jan 17, 2013 at 2:57 AM, Nicholas Marriott <
nicholas.marri...@gmail.com> wrote:

> How are you running xterm and what do you have in .Xdefaults/.Xresources?
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: Extend -h, --help output

2013-02-18 Thread Sinbad
i agree with antoly, i found it surprising that a
new tool like tmux doesn't have 'tmux -h' or 'tmux
--help', the first command i ran when i first
installed tmux was 'tmux -h', it started a session
instead of printing concise help, this was a
surprise to me, and felt counter intuitive.

And also in tmux command-mode it would be helpful
if tmux can give possible options for a partially
entered command.

A :set command which lists the current settings.

A :help command with comprehensive online help
which can be browsed from with in tmux.

though these doesn't fall under openBSD style,
it's good to have as it greatly enhances the
user experience.
~



On Mon, Feb 18, 2013 at 3:24 PM, anatoly techtonik wrote:

> On Mon, Feb 18, 2013 at 12:21 PM, Nicholas Marriott <
> nicholas.marri...@gmail.com> wrote:
>
>> Funny I just tried "cd -h", "df -h", "ls -h", "ps -h" and none of them
>> gave me help. It seems people with expectations for -h are going to have
>> them dashed fairly often?
>>
>
> People are being told that it is impossible to change anything that is so
> ancient, so I won't be surprised that nobody even tried. If "tmux" was
> associated with Debian I didn't even have an chance to think I can send my
> proposal here. Getting here is already took the effort that's impossible
> for the most users. =)
>
> On Mon, Feb 18, 2013 at 12:13:43PM +0300, anatoly techtonik wrote:
>> >The reason is that users expect -h to work as in svn or hg way I
>> described
>> >earlier. A poll is the proof.
>> >--
>> >anatoly t.
>> >
>> >On Mon, Feb 18, 2013 at 11:37 AM, Nicholas Marriott
>> ><[1]nicholas.marri...@gmail.com> wrote:
>> >
>> >  "You don't want to do it" is not a good argument for changing it.
>> >
>> >  A poll is not going to help. This is not a democracy. You need to
>> give
>> >  reasons.
>> >
>> >  On Mon, Feb 18, 2013 at 11:26:32AM +0300, anatoly techtonik wrote:
>> >  > ** **Yes. I think it needs to be changed. The other aspect that
>> you
>> >  probably
>> >  > ** **don't want to change, because you've used to it and
>> therefore it
>> >  is a work
>> >  > ** **that you're not interested in. I think the only solution
>> here is
>> >  to run a
>> >  > ** **poll as a proof to show that this behavior really provides a
>> >  value (or
>> >  > ** **not).
>> >  > ** **--
>> >  > ** **anatoly t.
>> >  >
>> >  > ** **On Mon, Feb 18, 2013 at 11:23 AM, Nicholas Marriott
>> >  > ** **<[1][2]nicholas.marri...@gmail.com> wrote:
>> >  >
>> >  > ** ** **I do not think it needs to change. Do you?
>> >  >
>> >  > ** ** **On Mon, Feb 18, 2013 at 11:08:36AM +0300, anatoly
>> techtonik
>> >  wrote:
>> >  > ** ** **> ** **On Mon, Feb 18, 2013 at 12:44 AM, Nicholas
>> Marriott
>> >  > ** ** **> ** **<[1][2][3]nicholas.marri...@gmail.com> wrote:
>> >  > ** ** **>
>> >  > ** ** **> ** ** **tmux is a BSD program and traditionally BSD
>> programs
>> >  do not
>> >  > ** ** **support -h,
>> >  > ** ** **> ** ** **--help or indeed any extended built-in help
>> beyond
>> >  the usage
>> >  > ** ** **string. You
>> >  > ** ** **> ** ** **should be able to see the tmux help with "man
>> tmux".
>> >  > ** ** **>
>> >  > ** ** **> ** **That year this tradition comes down from?
>> >  > ** ** **> ** **Don't you think that things need to be changed?
>> >  > ** ** **> ** **In other word s- do you have arguments to keep the
>> >  things as is
>> >  > ** ** **in 201x+?
>> >  > ** ** **> ** **--**
>> >  > ** ** **> ** **anatoly t.**
>> >  > ** ** **>
>> >  > ** ** **> References
>> >  > ** ** **>
>> >  > ** ** **> ** **Visible links
>> >  > ** ** **> ** **1. mailto:[3][4]nicholas.marri...@gmail.com
>> >  >
>> >  > References
>> >  >
>> >  > ** **Visible links
>> >  > ** **1. mailto:[5]nicholas.marri...@gmail.com
>> >  > ** **2. mailto:[6]nicholas.marri...@gmail.com
>> >  > ** **3. mailto:[7]nicholas.marri...@gmail.com
>> >
>> > References
>> >
>> >Visible links
>> >1. mailto:nicholas.marri...@gmail.com
>> >2. mailto:nicholas.marri...@gmail.com
>> >3. mailto:nicholas.marri...@gmail.com
>> >4. mailto:nicholas.marri...@gmail.com
>> >5. mailto:nicholas.marri...@gmail.com
>> >6. mailto:nicholas.marri...@gmail.com
>> >7. mailto:nicholas.marri...@gmail.com
>>
>
>
>
> --
> The Go Parallel Website, sponsored by Intel - in partnership with Geeknet,
> is your hub for all things parallel software development, from weekly
> thought
> leadership blogs to news, videos, case studies, tutorials, tech docs,
> whitepapers, evaluation guides, and opinion stories. Check out the most
> recent posts - join the conversation now.
> http://goparallel.sourceforge.net/
> ___
> tmux-users mailin

list all the set options

2013-02-19 Thread Sinbad
how can i all the set options values, all the configured and
default ones, much like vim's :set

-sinbad
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


binding to enter password

2013-05-12 Thread Sinbad
i want to have a binding to enter into sudo mode.

so i added the following binding. but it is not working
what's the right way to do it.

 bind-key 0 send-keys "su^Mpass^M"
--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


map keys in copy mode

2013-06-03 Thread Sinbad
how can i map keys in copy mode, for example
i would like to map 'u' page-up and 'd' for
page-down. i know c-u c-d already works but
i don't want to press control key combinations,
i want a single character to do the job.

-sinbad
--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


binding multi-letter

2013-09-10 Thread Sinbad
hi, how can i bind a multi letter key to do something
for example i want to bind 'ga' to do some stuff,
here 'g' should be leader letter just like in vim.
how do i do that.
--
How ServiceNow helps IT people transform IT departments:
1. Consolidate legacy IT systems to a single system of record for IT
2. Standardize and globalize service processes across IT
3. Implement zero-touch automation to replace manual, redundant tasks
http://pubads.g.doubleclick.net/gampad/clk?id=5127&iu=/4140/ostg.clktrk___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


running a bash function from with in tmux.

2015-04-29 Thread Sinbad
Hi,

I have a user defined bash function which takes one string parameter
and does some operation on that string. i want to be able to call this
function from with-in tmux and also pass the parameter from tmux
itself. how can i achieve that ?

thanks
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: running a bash function from with in tmux.

2015-04-29 Thread Sinbad
can anyone shed some light on this.

On Wed, Apr 29, 2015 at 7:06 PM, Sinbad  wrote:

> Hi,
>
> I have a user defined bash function which takes one string parameter
> and does some operation on that string. i want to be able to call this
> function from with-in tmux and also pass the parameter from tmux
> itself. how can i achieve that ?
>
> thanks
>
>
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


tmux complete documentation.

2015-05-04 Thread Sinbad
hi,
i'm unable to find the complete documentation of tmux, detailing the syntax
of each and every
aspect of tmux. for instance i'm trying to look for complete command syntax
of 'split-window'
command i'm unable to find it anywhere. when i type the command under tmux
the syntax
briefly appears and goes away. any pointers to complete documentation will
be helpful.

thanks
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users