Re: [PATCH] Use wcwidth(1) to calculate character width

2015-05-17 Thread Nicholas Marriott
Hi We can't do this because tmux must know the width of the UTF-8 character but the locale may not be UTF-8. On Mon, May 18, 2015 at 01:59:11AM +0900, Kohei Suzuki wrote: >Several characters' width are depending on locale. They're called East >Asian Width. For instance, U+03B1 (GREEK SM

[PATCH] Use wcwidth(1) to calculate character width

2015-05-17 Thread Kohei Suzuki
Several characters' width are depending on locale. They're called East Asian Width. For instance, U+03B1 (GREEK SMALL LETTER ALPHA) has width 1 in most locales, but it has width 2 in some East Asian locales (e.g. Japanese). Kohei Suzuki eagle...@gmail.com From 6324eb0bef76c9ec0d214cefa433efa1493f

Re: [PATCH] configure: Use silent rules (reduced CC output)

2015-05-17 Thread Nicholas Marriott
No thanks, this makes build logs much more useless. On Sun, May 17, 2015 at 04:12:59AM +0100, Thomas Adam wrote: > As of automake-1.11, it's now possible to tell automake that the compiler > output is "hidden", producing output almost identical to compiling on > OpenBSD. The effects of this are

Re: new-session not accepted

2015-05-17 Thread Elimar Riesebieter
* Thomas Adam [2015-05-17 11:08 +0100]: > On Sun, May 17, 2015 at 11:45:57AM +0200, Elimar Riesebieter wrote: > > > > Running tmux 2.0 > > > > In tmux.conf: > > > > set-option -t 8 default-terminal screen > > > > Starting tmux: > > $ tmux new-session -s 8 \; attach > > > > gives: > > > > tm

Re: new-session not accepted

2015-05-17 Thread Thomas Adam
On Sun, May 17, 2015 at 11:45:57AM +0200, Elimar Riesebieter wrote: > > Running tmux 2.0 > > In tmux.conf: > > set-option -t 8 default-terminal screen > > Starting tmux: > $ tmux new-session -s 8 \; attach > > gives: > > tmux.conf:16: session not found: 8 > tmux.conf:16: couldn't set 'default

new-session not accepted

2015-05-17 Thread Elimar Riesebieter
Running tmux 2.0 In tmux.conf: set-option -t 8 default-terminal screen Starting tmux: $ tmux new-session -s 8 \; attach gives: tmux.conf:16: session not found: 8 tmux.conf:16: couldn't set 'default-terminal' Confirmed gives a session with tmux list-session: 8: 1 windows (created Sun May 17

Re: Is it possible to have a binding that "brings back" mouse behavior?

2015-05-17 Thread Steven Lu
I think I understand it now, the inner quotes for if-shell do not require escaping. Presumably they can be nested arbitrarily as well? On Sat, May 16, 2015 at 11:24 PM, Thomas Adam wrote: > On Fri, May 15, 2015 at 08:23:02PM -0400, Steven Lu wrote: > > But it's turning out to be super challengin