MRE:
package Foo;
use Moo;
use namespace::clean;
=head1 GETTERS AND SETTERS
=head2 foo
A very complicated property that I would want the user to see an explanation for.
=cut
has foo => ( is => 'ro' );
=head2 bar
Does bar-ish stuff.
=cut
sub bar {
my $this = shift;
# do bar-ish stuff
}
If I hover over "foo", I just see '(attribute) foo' in a tool tip.
If I hover over "bar", I see the formatted POD for it.
Is this desired behavior?