gaussblurinc
gaussblurinc

Reputation: 3692

Sublime Text 2: Module autocompletion for Perl (Script supporting)

Maybe I miss something about sublime text 2 but I can't find module name autocomplete for Perl in it.
I know that this task (module name autocomplete) is simple. Just take array @INC in Perl and search deep in directories. Ok, this part is not a problem (add them to dictionary).

So, does sublime text 2 have a script support or something similar?

Dream
It will be great if sublime text 2 can parse all modules and take their functions for autocompletion

Upvotes: 3

Views: 3140

Answers (1)

MattDMo
MattDMo

Reputation: 102892

SublimeCodeIntel should work for you. I haven't used it for Perl, but the language is supported, and it does all the things you're looking for with Python, my language of choice. You can install it through Package Control. It will take a while to get going at first, as it has to index all your modules (you can tell it where to look in the settings), but once that's done it's a real time-saver.

Upvotes: 5

Related Questions