Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
This screenshot is what I am currently working on. There's some duplicate code that I'm refactoring out (hence the tests open on the right), but I have to say that this looks more impressive as a screenshot than it does in the actual editor. I wonder why that is?
Vim for Perl developers (Score:2, Insightful)
andrew
Re:Vim for Perl developers (Score:4, Informative)
I believe that's here [maks.net]. I found it through a Meditation on Perlmonks [perlmonks.org].
Reply to This
Parent
Re:Vim for Perl developers (Score:4, Informative)
http://groups.google.com/groups?selm=yf4zp5e7ohp.fsf%40pluie.kaist.ac.kr&oe=EUC- KR&output=gplain [google.com]
-sam
Reply to This
Parent
Re:Vim for Perl developers (Score:2)
Re:Vim for Perl developers (Score:1)
I remember playing around with .vimrc for a while when I first discovered some of the extras, before I finally realised I just like my runtime configuration to include 'se ts=4'. Maybe I'm just an old timer now (I started using vi in 1985), which probably also explains why I can't stand emacs ;)
$self-{cgi} (Score:1)
I spotted that you do a $self->{cgi}->param call, wouldn't it be easier to have helper functions? The module I'm working on contains a CGI object and I have two helper functions, cgi and param to save typing. You could also make param return '' instead of undef.
Re:$self-{cgi} (Score:2)
You know what? I feel ridiculously stupid right about now :-/ That's a great idea.