in reply to Re: Perl omnicompletion available for Vim 7
in thread Perl omnicompletion available for Vim 7
The release notes mention that it parses any existing POD as best it can, which tallies with my (limited) experience of it thus far.
Things I've noticed:
gives me a truncated-enough-to-be-of-no-use pop-up menu of all the DateTime::* modules I have installed. I think it's listing them all, but the names are cut off enough that I can't tell what they are. In fairness, this might be something else to do with my reasonably-heavily-customized Vim setup though.my $foo = DateTime::^X^O
only shows 'clone' as an available method and doesn't show any of the available 'parse_*' or 'format_*' methods in DateTime::Format::Pgmy $parser = DateTime::Format::Pg->new(); $parser->^X^O
shows 28 of the available matches. DateTime has, at first glance, quite a few more than that, but I've not yet looked any further into how it's finding the ones it is.my $now = DateTime->now; $now->^X^O
And yes, I'm doing a fair amount of playing with DateTime at the moment... ;-)
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Perl omnicompletion available for Vim 7
by blazar (Canon) on Jun 21, 2007 at 11:37 UTC |