Re: WARNING! Don't update your local svn repository now!

2007-05-11 Thread Nicolas Weber
Hi, The directories structure of the Subversion repository has been changed. Please use this command to checkout the latest sources: svn co https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1 vim7 If you had checked out a copy of the sources before, please run this command in

Re: improving encryption in vim

2007-03-20 Thread Nicolas Weber
Hi, To clarify, based on my understanding: if software is exported from the U.S., which vim arguably is, and it is capable of powerful encryption isn't vim exported from the Netherlands? Nico

Re: creating eclipse plugin for vim

2007-03-18 Thread Nicolas Weber
Hi, I was think of rewriting code base of vim in java. The whole code base? What kind of problems do you people think I can face? As sloccount vim7-svn/src shows, there are about 281000 thousand lines of vim code. The average programmer writes 10 lines of functional, tested code.

Re: Google Summer of Code 2007 : Improve regexp performance

2007-03-16 Thread Nicolas Weber
Hi, A multithreaded matcher might be useful to vim but do we have a need for fuzzy matching ? vim doesn't use threads at the moment, and Bram seems to be reluctant to include threads for various reasons. Bye, Nico

Fwd: mac gui tabline v5

2007-02-11 Thread Nicolas Weber
Hi, vim-mac stripped the attachment again. I hope it comes through on this list. Anfang der weitergeleiteten E-Mail: Von: Nicolas Weber [EMAIL PROTECTED] Datum: 11. Februar 2007 21:13:53 MEZ An: vim mac [EMAIL PROTECTED] Betreff: mac gui tabline v5 Hi everyone, Michael Wookey suggested

Re: 7.0.188 - problem with directory browser?

2007-01-27 Thread Nicolas Weber
Hi, After sending my response, I received the following alien language (probably German from the .de) email. I copied no recipient at @youngs.de. Perhaps a member of this list is sending away from office responses to the list? From: [EMAIL PROTECTED] Die von Ihnen genutzte

Re: Patch 7.0.138 (extra)

2006-10-17 Thread Nicolas Weber
Hi, Patch 7.0.138 (extra) Problem:Mac: modifiers don't work with function keys. Solution: Use GetEventParameter() to obtain modifiers. (Nicolas Weber) Files: src/gui_mac.c thanks for including this. Sadly, I just found another problem caused by this patch: Mappings

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-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-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 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':

[macvim] Work-in-progress patch for new events

2006-09-20 Thread Nicolas Weber
Hi everyone, I'm currently writing a patch to port mac vim to carbon's new (os 9? os x 10.0?) event model. This has the main advantage that the new event model provides standard handlers for a lot of stuff (window movement, ...) and makes further patches much easier to write. In the next

(mac patch) Make scrollbars proportional, remove help item from context menu, minor cleanup

2006-08-27 Thread Nicolas Weber
Hi, here's a cosmetic patch for vim mac. It does the following things: 1. It makes the scrollbars proportional (by calling SetControlViewSize () in gui_mch_set_scrollbar_thumb()) 2. It removes the useless disabled Help entry from the context menu (by passing kCMHelpItemRemoveHelp to

(patch, mac) Scrolling trackpad shouldn't scroll up/down when tracking left/right

2006-08-19 Thread Nicolas Weber
Hi, Apple's notebooks have a scrolling trackpad, which means you can track them with two fingers to scroll the document that's currently under the cursor. However, when you move your fingers left/right, Vim scroll up/down. So if you move your fingers from the lower-left to the

:browse tabe documentation missing

2006-08-19 Thread Nicolas Weber
Hi, I just noticed that the documentation for :browse doesn't mention that it works with :tabe, :split and :vsplit. I don't know if it really saves time if I provide a patch for this, but a patch is attached nevertheless. Furthermore, it would be less suprising if it worked with :new as

macguitabline patch v4

2006-07-18 Thread Nicolas Weber
Hi, here's the fourth version of the guitabline patch for mac os x. I removed some dead code, and, more importantly, changed the code that it runs on 10.2 - 10.3 without changes (I could only test 10.3, though). There was a call to a 10.4-only function (DataBrowserChangeAttributes()),

Re: vim mac close button state patch

2006-07-10 Thread Nicolas Weber
Hi, this patch sets the close button state according to Indicating Changes With the Close Button in the Apple HIG ( http:// developer.apple.com/documentation/UserExperience/Conceptual/ OSXHIGuidelines/XHIGWindows/chapter_17_section_3.html ). I haven't tried it but it's good to try to make

vim mac close button state patch

2006-06-30 Thread Nicolas Weber
Hi, this patch sets the close button state according to Indicating Changes With the Close Button in the Apple HIG ( http:// developer.apple.com/documentation/UserExperience/Conceptual/ OSXHIGuidelines/XHIGWindows/chapter_17_section_3.html ). I set the button state in gui_mch_flush(), if a

Re: mac guitabline v2

2006-06-27 Thread Nicolas Weber
Hi, You probably already know, but when I patched my source and compiled it, I got these warnings: gui.c: In function ‘gui_init_which_components’: gui.c:3229: warning: implicit declaration of function ‘gui_mch_showing_tabline’ gui.c: In function ‘gui_update_tabline’: gui.c:3403: warning:

mac guitabline v3

2006-06-27 Thread Nicolas Weber
Hi, this fixes the warnings. Apply with -p0 (NOT -p1). Bye, Nico macguitab.v3.patch.1 Description: Binary data

Re: default cursorline/cursorcolumn with dark background

2006-04-16 Thread Nicolas Weber
Hi, In the meantime I found another one: Could you please set MatchParen differently, because with a dark background a light foreground and Cyan don't fit. I suggest setting guifg to bg or Black. That's bugging me too. Something else: When I have a completion menu that's long, but still