Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vim like Perl IDE [closed]

I use Vim and vim-script "perl-support" for Perl programming. But in the perlsupport like Perl Vim IDE I couldn't find a feature for show all functions and variables in my script. Are there any other useful vim scripts for this goal or how I can reach it with other approaches? Thanks for a response!

like image 689
edem Avatar asked Aug 27 '26 21:08

edem


2 Answers

Check out the Tagbar plugin. It uses CTAGS, which is a Unix standard way of indexing symbols in source code for a variety of languages. The plugin page has details on setting it up.

like image 79
Jim Stewart Avatar answered Aug 30 '26 11:08

Jim Stewart


Sorry for of topic. this is not plugin that show function/variables.

Use perlomni.vim

This provides code completion that can show candidates by analysing contexts. For example,

use Foo;
my $foo = Foo->new;
$foo->

perlomni show method functions. it's awesome.

like image 36
mattn Avatar answered Aug 30 '26 12:08

mattn



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!