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

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, One more thing we need to verify from bram what he thinks. On 3/18/07, Asim Imdad <[EMAIL PROTECTED]> wrote: yup, I was talking about the same thing and sure we can combine effort to do this. It will be my pleasure. > Eclipse has an option of using Vim as an external editor. > So the on

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. Say

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, Mi

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 eMail-Ad

Re: BOF Vim 8 - EncryptLine

2007-01-18 Thread Nicolas Weber
Hi, You are correct, I was thinking of this the other way around. My suggestion would only be "security" in the sense that someone reading over your shoulder would be prevented from seeing sensitive content in the file (e.g. passwords) and would really only be an extension to folding. No

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

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-10 Thread Nicolas Weber
Hi, This is fixed in the attached patch. Another key that's still not working is Shift-Space (or Meta-Space). I'll take care of that later (but that doesn't work in the current mac vim either). Thanks. I'll try it out. I just noticed that this version of the patch breaks non-ascii unicod

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). I'll

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 pat

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

2006-09-27 Thread Nicolas Weber
Hi, 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) were sent with MOD_MASK_CT

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

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

2006-09-24 Thread Nicolas Weber
Hi, 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 be fixed too. Please test this patch and tell me ab

[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 nex

(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 Contex

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

(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 upper-right

Re: scrolloff enhancement wish

2006-07-21 Thread Nicolas Weber
Hi, Too many options? Is that possible? Obviously ;-) As you said, you can probably write a keymapping that does what you want (:map j might do what you want if I understood you correctly). Bye, Nico

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()), thi

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 V

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

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

mac guitabline v2

2006-06-24 Thread Nicolas Weber
Hi, this patch adds a guitabline to mac vim and fixes the bug reported recently. The diff is to current svn. Apply with -p1 in vim's root folder. Perhaps I'll post a binary later, my svn binary is 35mb (why??), I won't post *that* ;-) Bye, Nico macguitab.v2.patch.1 Description: Binary

Re: src/po/README_mvc.txt: Documentation Update

2006-06-23 Thread Nicolas Weber
Hi, + Another possibility is to use the gnuwin32 port of gettext. This is + recommended especially if you use already gnuwin32 tools to gunzip, bunzip, + patch etc. these files. You find the gnuwin32 version of gettext here: "if you already use" + Yet another very strait forward way is t

gui tabline for mac vim; general direction for mac vim

2006-06-12 Thread Nicolas Weber
Hi, I've written a gui tabline implementation for mac vim. I've been using it for three weeks for now, it seems to work quite good, even the required context menu is included ;-). The patch against vim7 svn is attached, apply it with -p1. You can find some notes I wrote when I implemented

completion menu flicker

2006-04-16 Thread Nicolas Weber
Hi, I sent this comment in a reply to another mail, seems it got lost. I'm resending it in a "thread" on its own: When I have a completion menu that's long, but still completely fits the current window (say, 30 entries) and I hit hit or the whole list is redrawn (ie, it flickers). Is there

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 compl

Re: [bug] Error detected while processing function 10_Highlight_Matching_Pair:

2006-04-14 Thread Nicolas Weber
Hi, The error is: Error detected while processing function 10_Highlight_Matching_Pair: line 41: E121: Undefined variable: c_lnu This was fixed in vim7d iirc. Try to upgrade. -Nico

Re: Promote window to tab

2006-04-10 Thread Nicolas Weber
2. gp - Promote to tab Opens the current buffer in a new tab, closes the old buffer if the old buffer is not the only buffer in current view We could use CTRL-W T for this, it's currently not used. When the current tab page has only one window I think it should fail. Sounds good :-)

Promote window to tab

2006-04-10 Thread Nicolas Weber
Hi, in my eyes the following commands are useful for working with tabs: 1. :tabsplit Opens the current buffer in a new tab, leaves the old buffer open 2. gp - Promote to tab Opens the current buffer in a new tab, closes the old buffer if the old buffer is not the only buffer in current view ( :