dotfiles/.vim/template/perl/base-package.pl

10 lines
183 B
Perl
Raw Normal View History

2012-02-13 19:19:04 +00:00
package {{_expr_:substitute(substitute(substitute(expand('%'), '.*lib[\\/]', '', 'g'), '[\\/]', '::', 'g'), '\.pm$', '', 'g')}};
use strict;
use warnings;
use utf8;
{{_cursor_}}
1