Ivan Tubert-Brohman wrote:
* The code gets "lost" among the documentation, as often you have more
documentation than code. Syntax highlighting reduces the problem, but
the POD still takes half the screen if you have short subs.
Another option would be to dust the code folding features of my ed
David Golden wrote:
As a vim user, I found it helpful to edit my perl.vim syntax file like so:
" Use only the bare minimum of rules
- if exists("perl_fold")
+ if exists("perl_fold_pod")
syn region perlPOD start="^=[a-z]" end="^=cut" fold
else
syn region perlPOD start="^=[a-z]" end="^
The 'no_diag' behavior of Test::More has been made a Test::Builder method.
It should have been one in the first place.
"use Test::More 'no_diag'" has been deprecated. I don't want the behavior
going forward into Test::Builder::Module. Instead, use the no_diag()
method of Test::Builder to control