Stephan Brunner wrote: > Write, for example, > > my $foo = Foo->new; > $foo-> (you get a selection of the available methods here, which is nice!). > > But write (as it happens more often this way): > > my $foo = shift; > # or my $foo = $other_foo; or my $foo = $tree->get_model or ... > $foo-> (you get nothing here...) > > @Daniel: Is Komodo any better in this regard? >
No it's not. But if you create your $foo: my $foo = Foo->new; then you get code completion and pop-up hinting from the package's POD, which is pretty nice. -- Daniel Kasak IT Developer NUS Consulting Group Level 5, 77 Pacific Highway North Sydney, NSW, Australia 2060 T: (+61) 2 9922-7676 / F: (+61) 2 9922 7989 email: [EMAIL PROTECTED] website: http://www.nusconsulting.com.au _______________________________________________ gtk-perl-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/gtk-perl-list
