mirror of
https://github.com/vim-scripts/perl-support.vim.git
synced 2026-03-01 18:23:21 +01:00
+ Adaption for 'perlcritic', version 1.03 . Interface improved. + Three new Ex commands to control 'perlcritic'. + Subdirectories rearranged. + Escaping special characters in filenames reworked (Unix,Windows).
-
9 lines
381 B
Plaintext
9 lines
381 B
Plaintext
#
|
|
# Devel::SmallProf : variables which can be used to affect what gets profiled.
|
|
#
|
|
$DB::drop_zeros = 0; # Do not show lines which were never called: 1
|
|
$DB::grep_format = 0; # Output on a format similar to grep : 1
|
|
$DB::profile = 1; # Turn off profiling for a time: 0
|
|
%DB::packages = ('main'=>1); # Only profile code in a certain package.
|
|
|