john-jones
john-jones

Reputation: 7780

Vim Perl autocomplete displaying a given modules functions

Is it possible to have Vim autocomplete show which functions are available to a given module? So if I include a module called math and then go:
math::
and at that i could get a list of the functions available through that module.

Upvotes: 2

Views: 2564

Answers (1)

michaelmichael
michaelmichael

Reputation: 14125

The plugin AutoComplPop does this, if you also have Perl omnicompletion set up.

Upvotes: 2

Related Questions