Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
One of my coworkers is looking for a Perl cross-reference tool that has syntax highlighting, allows you to click through to various modules, given a "sub foo", will attempt to list every module that has a "sub foo", etc. Can anyone point me in the right direction? Running on Linux would be best, but Mac OSX will do.
check w/ssgt foy (Score:2)
--
xoa
Re:check w/ssgt foy (Score:2)
I saw that and it sounded perfect, but sine it's not yet available ... :(
Re:check w/ssgt foy (Score:3, Funny)
--
xoa
Re:check w/ssgt foy (Score:2)
etags/ctags (Score:2)
For emacs change to your top level directory and run etags `find * -name '*.p[lm]'`. Then, inside emacs, you press M-. to follow a symbol to it's definition and M-* to go back to where you were.
Vim is pretty similiar. You run ctags `find * -name '*.p[lm]'` and then you can do vim -t foo to jump straight to where foo is defined. Inside vim, you can either do :ta foo or control-left-click on a word to jump to its definition. To go back, in all ca
Re:etags/ctags (Score:2)
-Dom
CPANXR (Score:2)
Re:CPANXR (Score:1)
Best regards,
life is too short
Re:CPANXR (Score:2, Insightful)
=head1 NAME
cpanxr - CPANXR indexer
[...]
=head1 OPTIONS
[...]
=item B<-man>
Prints the manual page and exists.
Cool. Zen and the art of CPAN indexing.