Re: Tmux in Windows Cygwin

2013-04-30 Thread Thomas Adam
Hi, On 30 April 2013 22:12, simfox3 wrote: > I've been searching for a couple hours and have not found any documentation > on how to run tmux in Windows. The few posts that exist in the internetz > mention that Cygwin doesn't support 'passing file descriptors over UNIX > domain sockets', and work

Re: Tmux in Windows Cygwin

2013-04-30 Thread Nicholas Marriott
Hi Cygwin does not support file descriptor passing across Unix domain sockets (SCM_RIGHTS) so tmux won't work. To get it working you need to find a developer with interest and knowledge of both Windows and Unix who can come up with a way to support this in Cygwin or implement a compatibility me

Re: Saving log so far to disk

2013-04-30 Thread Thomas Adam
On 30 April 2013 23:44, James Jong wrote: > Is there any way to have tmux save the scroll back (everything that has been > printed so far on a pane) to a file? See commands such as: pipe-pane and capture-pane, depending on your needs. More likely capture-pane. -- Thomas Adam -

[patch] Fix buffer overflow crash in cmd_print()

2013-04-30 Thread George Nachman
cmd_print() has a bug that causes a crash on very long commands. args_print() may return a value equal to the passed-in length, and cmd_print() appends a null after that location, which steps on the stack of cmdq_continue(). This patch reserves space for the null in the length passed to arg_print()