aboutsummaryrefslogblamecommitdiff
path: root/vim/after/ftplugin/perl.vim
blob: 866316f2a415104590393867917509fd325907b5 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                         
" Run perl -c on the current buffer
nnoremap <leader>pc :!perl -c %<CR>

" Run perlcritic over the current buffer
nnoremap <leader>pl :!perlcritic %<CR>

" Run the current buffer through perltidy
nnoremap <leader>pt :%!perltidy<CR>