Re: [PATCH 6/7] Show how VT100 ACS (alternate character set) should actually render

2012-09-15 Thread Thomas Adam
On Sat, Sep 15, 2012 at 03:22:42PM +0200, Marcel Partap wrote: > --- > trunk/screen-redraw.c |4 ++-- > trunk/tty-acs.c | 64 > - > 2 files changed, 34 insertions(+), 34 deletions(-) > > diff --git a/trunk/screen-redraw.c b/trunk/screen

Re: [PATCH 3/7] Add mechanism to handle renamed option/value strings in config files.

2012-09-15 Thread Thomas Adam
On Sat, Sep 15, 2012 at 03:22:39PM +0200, Marcel Partap wrote: > First usage instance is the renaming of the mode-mouse option. Hmm. I am not sure I'm too keen on this approach. What happens when/if mode-copy-mouse also needs renaming due to some other functionlity change? I think rather than s

Re: [PATCH 1/7] Find working path of foreground sub process in osdep_get_cwd

2012-09-15 Thread Thomas Adam
On Sat, Sep 15, 2012 at 03:22:37PM +0200, Marcel Partap wrote: > by picking up the process group leader from the terminal fd > via tcgetpgrp() instead of using the direct pane child process. Why? I mean, what problem is this solving? You don't mention it in your commit message. -- Thomas Adam

[PATCH 2/7] Rename mode-mouse option to mouse-copy-mode, always enable mouse in choose mode

2012-09-15 Thread Marcel Partap
--- trunk/input-keys.c|2 +- trunk/options-table.c |8 trunk/server-client.c |2 +- trunk/tmux.1 | 11 +-- trunk/window-choose.c |3 +-- trunk/window-copy.c |2 +- trunk/window.c|2 +- 7 files changed, 14 insertions(+), 16 deletions

[PATCH 1/7] Find working path of foreground sub process in osdep_get_cwd

2012-09-15 Thread Marcel Partap
by picking up the process group leader from the terminal fd via tcgetpgrp() instead of using the direct pane child process. (works on linux, other platforms untested) --- trunk/cmd.c |2 +- trunk/format.c |2 +- trunk/osdep-aix.c |2 +- trunk/osdep-darwin.c

[PATCH 4/7] Don't exit copy-mode when scrolling with mouse-copy-mode set to "within"

2012-09-15 Thread Marcel Partap
--- trunk/window-copy.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/trunk/window-copy.c b/trunk/window-copy.c index ca4c97b..bd78f30 100644 --- a/trunk/window-copy.c +++ b/trunk/window-copy.c @@ -836,7 +836,8 @@ window_copy_mouse( } else if ((m->b & MOU

[PATCH 6/7] Show how VT100 ACS (alternate character set) should actually render

2012-09-15 Thread Marcel Partap
--- trunk/screen-redraw.c |4 ++-- trunk/tty-acs.c | 64 - 2 files changed, 34 insertions(+), 34 deletions(-) diff --git a/trunk/screen-redraw.c b/trunk/screen-redraw.c index 75f7238..4d4899d 100644 --- a/trunk/screen-redraw.c +++ b/trun

[PATCH 5/7] Add pane-active-border-mark option for <>^v arrows indicating current pane

2012-09-15 Thread Marcel Partap
--- trunk/examples/tmux.vim |2 +- trunk/options-table.c |5 + trunk/screen-redraw.c | 38 +++--- trunk/tmux.1|4 trunk/tty-term.c|2 +- 5 files changed, 38 insertions(+), 13 deletions(-) diff --git a/trunk/example

[PATCH 3/7] Add mechanism to handle renamed option/value strings in config files.

2012-09-15 Thread Marcel Partap
First usage instance is the renaming of the mode-mouse option. --- trunk/cmd-set-option.c |3 ++- trunk/options-table.c | 55 trunk/tmux.h |1 + 3 files changed, 58 insertions(+), 1 deletion(-) diff --git a/trunk/cmd-set-option

[PATCH 7/7] Implement mouse wheel scrolling emulation.

2012-09-15 Thread Marcel Partap
Scrolling mouse wheel while shift modifier key is held generates fake cursor key events. With ctrl modifier added, speed is multi- plied by the value of "mouse-scroll-speedup" variable (default 3). --- trunk/examples/tmux.vim |2 +- trunk/input-keys.c | 15 +-- trunk/options

Re: join-pane problem

2012-09-15 Thread Franco
Indeed I misunderstood the default. Thanks, everything works perfect now -F On Fri, 14 Sep 2012 22:48:52 +0100 Thomas Adam wrote: > On Fri, Sep 14, 2012 at 07:16:24PM +, Franco wrote: > > Hello everyone. > > > > I recently started to use tmux and I ran into a problem which could be a > > bu