From 177b6659bb6fdef3ded0d989aa5517c2a0095c57 Mon Sep 17 00:00:00 2001 From: Fritz Mehner Date: Sun, 6 Jul 2014 19:39:52 +0200 Subject: [PATCH] Perl-Support: Perl::Tags not working - Loading Perl::Tags::Naive instead of Perl::Tags. --- plugin/perl-support.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin/perl-support.vim b/plugin/perl-support.vim index b68cacf..b96858e 100644 --- a/plugin/perl-support.vim +++ b/plugin/perl-support.vim @@ -29,7 +29,7 @@ " Devel::SmallProf (profiler) " Devel::ptkdb (debugger frontend) " Perl::Critic (stylechecker) -" Perl::Tags (generate Ctags style tags) +" Perl::Tags::Naive (generate Ctags style tags) " Perl::Tidy (beautifier) " YAPE::Regex::Explain (regular expression analyzer) " ddd (debugger frontend) @@ -2076,7 +2076,7 @@ silent call Perl_GetPerlcriticVerbosity(s:Perl_PerlcriticVerbosity) "=== FUNCTION ================================================================ " NAME: Perl_do_tags {{{1 -" DESCRIPTION: tag a new file with Perl::Tags +" DESCRIPTION: tag a new file with Perl::Tags::Naive " PARAMETERS: filename - " tagfile - name of the tag file " RETURNS: @@ -2741,9 +2741,9 @@ function! s:CreateAdditionalMaps () use if defined $ENV{PERL_LOCAL_INSTALLATION}, lib => $ENV{PERL_LOCAL_INSTALLATION}; - eval { require Perl::Tags }; + eval { require Perl::Tags::Naive }; if ( $@ ) { - # Perl::Tags not loadable + # Perl::Tags::Naive not loadable VIM::DoCommand("let g:Perl_PerlTags = 'off'" ); } else {