Re: C-Enter needed in tmux

2013-02-14 Thread Nicholas Marriott
Actually I just did some tidying while I was looking at this so here's a diff against latest git: diff --git a/input-keys.c b/input-keys.c index 0953ce7..1d75809 100644 --- a/input-keys.c +++ b/input-keys.c @@ -130,6 +130,9 @@ const struct input_key_ent input_keys[] = { { KEYC_KP_ENTER,

Re: C-Enter needed in tmux

2013-02-14 Thread Nicholas Marriott
You can't bind arbitrary key strings at the moment and it wouldn't work anyway because: - The program must tell xterm to send these and tmux doesn't do this. - emacs only accepts the keys when TERM=xterm, not when TERM=screen. There has been some talk of supporting xterm modifyOtherKeys but so f

Re: copying from buffer into multiple panes, possible? (solved)

2013-02-14 Thread N.J. Thomas
* Nicholas Marriott [2013-02-09 14:50:51+]: > > In sync-panes mode, can tmux paste a single buffer into multiple > > panes? Is this possible? > > I'm afraid it's not, you have to use your terminal's paste or write a > script using pasteb -t. Great, thanks for the tip. In case anyone else is

Re: C-Enter needed in tmux

2013-02-14 Thread Nicholas Marriott
C-Enter doesn't send anything unique in most terminals, what does it send in yours outside tmux? Run "cat" then press C-Enter and tell me what you see. Also tell me what terminal you are using. On Tue, Feb 12, 2013 at 01:34:55AM +0100, Csaba Andras wrote: >Hi >Tmux doesn't forward a few

Re: osdep_get_name is broken on OS X

2013-02-14 Thread OZAKI Kiichi
My patch replaces sysctl with proc_pidinfo. This is the same way as osdep_get_cwd. On 2013/02/11, at 21:04, Nicholas Marriott wrote: > Ok but what does your patch do and how does it fix the problem? > > > On Mon, Feb 11, 2013 at 08:56:06PM +0900, OZAKI Kiichi wrote: >> On OS X, osdep_get_nam

C-Enter needed in tmux

2013-02-14 Thread Csaba Andras
Hi Tmux doesn't forward a few keyboard combinations that I need for org-mode in emacs. The first one is C-Enter (org-insert-heading-respect-content). I've tried Bindkey :send-keys C-Enter but that doesn't work. It seems to me that it is intentionally stopped. See this change by Micah Cowan: ht