Re: Perl::Tags (Was: perlcomplete.vim -- anyone working on this?

2006-09-28 Thread Dr Bean
On Thu, 28 Sep 2006, Kevin Old wrote: > I've installed Perl::Tags from cpan and setup ftplugin/perl.vim like > the docs. I loaded a perl script to see how Perl::Tags worked and > nothing happened. I verified it was being loaded by :scriptnames and > it was. I started writing s

Re: Perl::Tags (Was: perlcomplete.vim -- anyone working on this?

2006-09-28 Thread Kevin Old
I've installed Perl::Tags from cpan and setup ftplugin/perl.vim like the docs. I loaded a perl script to see how Perl::Tags worked and nothing happened. I verified it was being loaded by :scriptnames and it was. I started writing some perl code and nothing happened. How do I execute the

Re: Perl::Tags (Was: perlcomplete.vim -- anyone working on this?

2006-07-27 Thread Dr Bean
On Fri, 21 Jul 2006, Hakim Cassimally wrote: > Have you got PERL5LIB set to look in lib/ and t/ ? > Module::Locate defaults to looking at @INC. > You could set this in your environment variables. Rather than this alternative, I like the next one: > Of course, it would be nice i

Re: Perl::Tags (Was: perlcomplete.vim -- anyone working on this?

2006-07-21 Thread Hakim Cassimally
Have you got PERL5LIB set to look in lib/ and t/ ? Module::Locate defaults to looking at @INC. You could set this in your environment variables. Of course, it would be nice if Perl::Tags would look at: use lib qw( ); declarations and add those to where it looks for modules... By the way

Perl::Tags (Was: perlcomplete.vim -- anyone working on this?

2006-07-21 Thread Dr Bean
On Wed, 12 Jul 2006, Dr Bean wrote: > On Wed, 12 Jul 2006, Hakim Cassimally wrote: > > Also... at the moment the script in the manpage doesn't have a mapping > > to refresh the tags file. If you defined the sub after opening the > > file, it won't be seen until you close and reopen. (I'll proba

Re: Perl Tags

2006-05-10 Thread Vigil
On Tue, 9 May 2006, Yegappan Lakshmanan wrote: Are you looking for the ":tselect", ":tjump", g] and g_CTRL-] commands? When there are more than one matching tag, these commands will allow you to select a tag from a list. No, the problem is that ctags/vim doesn't recognise the 'sub' part of &p

Re: Perl Tags

2006-05-09 Thread Yegappan Lakshmanan
Hi, On 5/9/06, Vigil <[EMAIL PROTECTED]> wrote: Is there a way to have vim work with tags of the format &package::sub(arg)? I have tried normal ctags, and pltags, but they don't work with this. When I ctrl-] on "sub", I'd like to be taken to the definition of package's sub. I recall it identifyi

Perl Tags

2006-05-09 Thread Vigil
Is there a way to have vim work with tags of the format &package::sub(arg)? I have tried normal ctags, and pltags, but they don't work with this. When I ctrl-] on "sub", I'd like to be taken to the definition of package's sub. I recall it identifying definitions of the form class->method(arg). E