RE: VimL and Exuberant tags - Suggestions please

2006-10-13 Thread Zdenek Sekera
-Original Message- From: David Fishburn [mailto:[EMAIL PROTECTED] Sent: 13 October 2006 02:16 To: vim@vim.org Subject: VimL and Exuberant tags - Suggestions please I have taken over maintenance of the VimL exuberant tags component. That's excellent news, thanks for doing it,

Re: VimL and Exuberant tags - Suggestions please

2006-10-13 Thread Martin Krischik
Am Freitag, 13. Oktober 2006 02:16 schrieb David Fishburn: I have taken over maintenance of the VimL exuberant tags component. Just VimL or the hole of ctags? The ctags Patch list list [1] not been worked on for ages. Parsers for Ada, Ruby, PHP, Haskel are Open and waiting for integration for

Re: VimL and Exuberant tags - Suggestions please

2006-10-13 Thread Nikolai Weibull
On 10/13/06, Martin Krischik [EMAIL PROTECTED] wrote: The ctags Patch list list [1] not been worked on for ages. I wonder why no one has taken over development/forked this project yet. It seems obvious that the current maintainer has given up interest. nikolai

Re: VimL and Exuberant tags - Suggestions please

2006-10-13 Thread Nikolai Weibull
On 10/13/06, Nikolai Weibull [EMAIL PROTECTED] wrote: On 10/13/06, Martin Krischik [EMAIL PROTECTED] wrote: The ctags Patch list list [1] not been worked on for ages. I wonder why no one has taken over development/forked this project yet. It seems obvious that the current maintainer has

RE: VimL and Exuberant tags - Suggestions please

2006-10-13 Thread David Fishburn
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nikolai Weibull Sent: Friday, October 13, 2006 2:48 PM To: Martin Krischik Cc: vim-dev; vim@vim.org Subject: Re: VimL and Exuberant tags - Suggestions please On 10/13/06, Nikolai Weibull [EMAIL

Re: VimL and Exuberant tags - Suggestions please

2006-10-13 Thread Mikolaj Machowski
Dnia piątek, 13 października 2006 02:16, David Fishburn napisał: Instead of simply grouping everything under variables, should we distinguish between different types? let forms#form = { \ 'title': 'Address Entry Form', \ 'fields': [], \ 'defaultbutton': 'ok', \

RE: VimL and Exuberant tags - Suggestions please

2006-10-13 Thread David Fishburn
-Original Message- From: Peter Hodge [mailto:[EMAIL PROTECTED] Sent: Thursday, October 12, 2006 11:24 PM To: David Fishburn; vim@vim.org Subject: Re: VimL and Exuberant tags - Suggestions please Hello David, Can I suggest support for these commands: :set/setlocal

Re: VimL and Exuberant tags - Suggestions please

2006-10-13 Thread Charles E Campbell Jr
hdrtag (available at http://mysite.verizon.net/astronaut/src) creates tags for *.vim files. Currently, it supports tags for syntax, match, region, c luster, keyword, function, command, and maps. Regards, Chip Campbell

RE: VimL and Exuberant tags - Suggestions please

2006-10-13 Thread Hari Krishna Dara
On Fri, 13 Oct 2006 at 11:43am, David Fishburn wrote: -Original Message- From: Peter Hodge [mailto:[EMAIL PROTECTED] Sent: Thursday, October 12, 2006 11:24 PM To: David Fishburn; vim@vim.org Subject: Re: VimL and Exuberant tags - Suggestions please Hello David, Can I

Re: VimL and Exuberant tags - Suggestions please

2006-10-13 Thread Martin Krischik
Am Freitag, 13. Oktober 2006 17:22 schrieben Sie: function mydict.len() dict     let var_in_func = 2     let s:script_var_in_func = 2    return len(self.data) endfunction This syntax is only suitable for what is called an Meta-Class or a Singelton-Pattern. It is not suitable for real OO

Re: VimL and Exuberant tags - Suggestions please

2006-10-13 Thread Martin Krischik
Am Freitag, 13. Oktober 2006 02:16 schrieb David Fishburn: I have taken over maintenance of the VimL exuberant tags component. Just VimL or the hole of ctags? The ctags Patch list list [1] not been worked on for ages. Parsers for Ada, Ruby, PHP, Haskel are Open and waiting for integration for

Re: VimL and Exuberant tags - Suggestions please

2006-10-13 Thread Nikolai Weibull
On 10/13/06, Martin Krischik [EMAIL PROTECTED] wrote: The ctags Patch list list [1] not been worked on for ages. I wonder why no one has taken over development/forked this project yet. It seems obvious that the current maintainer has given up interest. nikolai

RE: VimL and Exuberant tags - Suggestions please

2006-10-13 Thread David Fishburn
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nikolai Weibull Sent: Friday, October 13, 2006 2:48 PM To: Martin Krischik Cc: vim-dev; vim@vim.org Subject: Re: VimL and Exuberant tags - Suggestions please On 10/13/06, Nikolai Weibull [EMAIL

Re: VimL and Exuberant tags - Suggestions please

2006-10-12 Thread A.J.Mechelynck
David Fishburn wrote: [...] When variables are identified we strip off the scope: let s:ignoreNextCursorMovedI = 0 == ignoreNextCursorMovedI Should the scope be left on == s:ignoreNextCursorMovedI How are scopes handled in other languages? Notice that varname (in a function) is the same as

Re: VimL and Exuberant tags - Suggestions please

2006-10-12 Thread Peter Hodge
Hello David, Can I suggest support for these commands: :set/setlocal/setglobal :syntax :highlight (and maybe :HiLink because it is so commonly used) Some examples: set foldmethod=syntax setlocal formatoptions+=roq setglobal completeopt-=preview syntax keyword phpFunction ...