Cursor Color/Style not resetting when switching panes/windows

2013-05-31 Thread simfox3
Hi All, In VIM, my normal mode cursor is a block, like most of you I presume. If I switch panes or windows while in normal mode, the cursor style (block) comes along for the ride. Sure, I could issue a simple escape sequence (echo -ne "\e[5 q") to reset it to the vertical line, but wouldn't it be

Re: Send UTF-8 encoded massage to tmux session with send-keys

2013-05-31 Thread Nicholas Marriott
Applied the fix, thanks! On Fri, May 31, 2013 at 02:40:34PM +0200, Jacob Bang wrote: >Thanks it works. Have made several tests and checked with md5sum and it >seems it works with this fix. Thanks for you help. :) > >On Fri, May 31, 2013 at 2:32 PM, Nicholas Marriott ><[1]nicholas

Re: Send UTF-8 encoded massage to tmux session with send-keys

2013-05-31 Thread Jacob Bang
Thanks it works. Have made several tests and checked with md5sum and it seems it works with this fix. Thanks for you help. :) On Fri, May 31, 2013 at 2:32 PM, Nicholas Marriott < nicholas.marri...@gmail.com> wrote: > Hi > > Can you try this change please? > > Index: cmd-send-keys.c > ===

Re: Send UTF-8 encoded massage to tmux session with send-keys

2013-05-31 Thread Nicholas Marriott
Hi Can you try this change please? Index: cmd-send-keys.c === RCS file: /cvs/src/usr.bin/tmux/cmd-send-keys.c,v retrieving revision 1.15 diff -u -p -r1.15 cmd-send-keys.c --- cmd-send-keys.c 24 Mar 2013 09:54:10 - 1.15 +

Re: Send UTF-8 encoded massage to tmux session with send-keys

2013-05-31 Thread Jacob Bang
Here is the result. I have produced the result this way: 1. I started the tmux with: tmux -vvvLtest new 2. In the tmux session i run: cat > testfile 3. In another SSH session i run: tmux -Ltest -u send-keys "æøå" enter 4. To close the tmux session I used ctrl+d two times. Besides the log f

Re: patch for tmux on cygwin

2013-05-31 Thread Nicholas Marriott
Thanks. We can't change msg_identify_data like this without bumping the protocol version, so that bit needs to go under #ifdef too. What happens if you do "tmux new I've attached an updated patch. > > You had wanted the change to resolv.h to go into compat.h, but I > didn't see how to do that s

Re: License file

2013-05-31 Thread Nicholas Marriott
I've added this file with some minor tweaks, thanks! On Thu, May 09, 2013 at 10:25:03PM +0200, Dagobert Michelsen wrote: > Hi Nicholas, > > Am 09.05.2013 um 22:07 schrieb Nicholas Marriott: > > I think we just need the licenses not every copyright and lists of files > > which is a pain to keep u

Re: Send UTF-8 encoded massage to tmux session with send-keys

2013-05-31 Thread Nicholas Marriott
Hi Can you run: tmux -vvvLtest new And do the send-keys as below, then exit that tmux and send me the *.log files from the current directory. On Wed, Apr 24, 2013 at 03:18:55PM +0200, Jacob Bang wrote: >If I start a tmux session and stat running an instance of *cat > testfile* >I g

Re: patch: Use a different guard for command not initiated by a control client

2013-05-31 Thread Nicholas Marriott
Hi Sorry for the delay, overlooked this one. I think I'd prefer just a numeric flag rather than auto, what about this (not tested)? Not wild about setting a flag on each command but I think putting it on the cmdq wouldn't work. Index: cmd-queue.c