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 tags?

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 some perl code and

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 if Perl::Tags would

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 probably

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,