Re: creating eclipse plugin for vim

2007-03-18 Thread Doug Kearns
On Sun, Mar 18, 2007 at 08:28:19AM +0100, Asim Imdad wrote:
 Hi,
 I was think of rewriting code base of vim in java. What kind of
 problems do you people think I can face? Already there is another
 project known as jvi. How much faithful it is to true vim design?

There's also a 'vim' plugin for IDEA's IntelliJ:
http://ideavim.sourceforge.net/

Regards,
Doug 


BUG: nested syntax regions and tranparent

2007-02-25 Thread Doug Kearns
G'day folks,

In the following sample string:


{pre{contained}post}


the right brace after contained is not highlighted when using these
syntax commands.


syn region foo1 matchgroup=foo2 start={ end=} contains=foo3
syn region foo3 start={ end=} transparent contained
hi def link foo1 Constant
hi def link foo2 Delimiter


Vim 6 seems to exhibit the correct behaviour.

Regards,
Doug


Re: A replacement for syntax/zsh.vim

2006-06-23 Thread Doug Kearns
On Fri, Jun 23, 2006 at 12:49:28AM +0200, Nikolai Weibull wrote:
 The current syntax/zsh.vim doesn't reflect the current state of Zsh
 very well.  I've tried contacting the current maintainer, Felix von
 Leitner, who hasn't responded to any of my three requests for comment
 that I've sent over the last one-and-a-half years. 

I haven't had much luck with Felix either, when trying to have some
issues in mail.vim fixed, but it appears he's recently handed over
maintenance of mail.vim so he may also be interested in doing the same
with zsh.vim.

 I therefore post
 it to this mailing list instead, to see if anyone is interested in
 seeing my version replace the one currently being distributed with
 Vim.

+1 - I think your version is clearly an improvement.

snip

Regards,
Doug


Omni completion file naming

2006-04-12 Thread Doug Kearns
I assume the omni completion files should follow the same naming
convention as the other runtime files? Eg. Should the current
pycomplete.vim actually be named pythoncomplete.vim?

Regards,
Doug