Re: [macvim] modifiers should be applied to special keys too (patch)

2006-10-15 Thread Nicolas Weber
Hi, this version of the key event patch fixes all problems that were reported so far. Bye, Nico keyevent.diff Description: Binary data

Re: [macvim] modifiers should be applied to special keys too (patch)

2006-10-15 Thread Bram Moolenaar
Nicolas Weber wrote: this version of the key event patch fixes all problems that were reported so far. Thanks. It appears to work for me. -- A fine is a tax for doing wrong. A tax is a fine for doing well. /// Bram Moolenaar -- [EMAIL PROTECTED] -- http://www.Moolenaar.net \\\ ///

Re: [macvim] modifiers should be applied to special keys too (patch)

2006-10-06 Thread Nicolas Weber
Hi, Here is one key that doesn't work for me: Shift-Tab. Most notably when doing command line completion, where Tab gets the next match and Shift-Tab goes to the previous match. This is fixed in the attached patch. Another key that's still not working is Shift-Space (or Meta-Space).

Re: [macvim] modifiers should be applied to special keys too (patch)

2006-10-06 Thread A.J.Mechelynck
Nicolas Weber wrote: Hi, Here is one key that doesn't work for me: Shift-Tab. Most notably when doing command line completion, where Tab gets the next match and Shift-Tab goes to the previous match. This is fixed in the attached patch. Another key that's still not working is Shift-Space

Re: [macvim] modifiers should be applied to special keys too (patch)

2006-10-04 Thread Bram Moolenaar
Nicolas - I tried the patch, but it appears that CTRL-F and CTRL-B no longer work in Normal mode. They do something in Insert mode after CTRL-V. CTRL-F and CTRL-B work for me in Normal mode (they scroll forward/ backward). I'm using mac gvim svn (patches 1-110) and the second

Re: [macvim] modifiers should be applied to special keys too (patch)

2006-10-04 Thread Nicolas Weber
Here is one key that doesn't work for me: Shift-Tab. Most notably when doing command line completion, where Tab gets the next match and Shift-Tab goes to the previous match. I can see it, I'll try to fix it tomorrow. I always use C-P for previous match (much easier to type imho ;-) ), so

Re: [macvim] modifiers should be applied to special keys too (patch)

2006-10-03 Thread Bram Moolenaar
Nicolas Weber wrote: Hmmm… I’m having a problem. Ctrl-A, ctrl-e, ctrl-k, ctrl-u, etc. don’t seem to work anymore. I have these lines in my vimrc: The attached patch should fix this problem as well (again the diff is against vim svn). The problem was that chars like ^A (ctrl-a)

Re: [macvim] modifiers should be applied to special keys too (patch)

2006-10-03 Thread Nicolas Weber
Hi, I tried the patch, but it appears that CTRL-F and CTRL-B no longer work in Normal mode. They do something in Insert mode after CTRL-V. CTRL-F and CTRL-B work for me in Normal mode (they scroll forward/ backward). I'm using mac gvim svn (patches 1-110) and the second version of my

Re: [macvim] modifiers should be applied to special keys too (patch)

2006-09-25 Thread Nicolas Weber
Hi, this updated patch should fix these warnings: Well, I get these errors: gui_mac.c:2018: warning: return type defaults to 'int' gui_mac.c: In function 'gui_mac_doKeyEventCarbon': gui_mac.c:2097: warning: suggest parentheses around within || gui_mac.c: In function 'gui_mch_init':

Re: [macvim] modifiers should be applied to special keys too (patch)

2006-09-24 Thread Kyle Wheeler
On Sunday, September 24 at 08:46 PM, quoth Nicolas Weber: here's a patch to current svn that applies modifier keys (shift, ctrl, cmd etc) to special keys as well. With this patch, Shift-Left/ Right work and some of the mapping problems some people complained about on [EMAIL PROTECTED] should