aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/perl.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-03 23:58:29 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-03 23:59:31 +1300
commitf1a27833c012d3c0550f2d97839663a5e5ec7171 (patch)
tree7aa8c92074465913f22d9d0ab2568e9b65d4e7e1 /vim/ftplugin/perl.vim
parentUse long form options for tidy(1) Vim call (diff)
downloaddotfiles-f1a27833c012d3c0550f2d97839663a5e5ec7171.tar.gz
dotfiles-f1a27833c012d3c0550f2d97839663a5e5ec7171.zip
Improve comments on check/lint/tidy maps
Diffstat (limited to 'vim/ftplugin/perl.vim')
-rw-r--r--vim/ftplugin/perl.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/ftplugin/perl.vim b/vim/ftplugin/perl.vim
index eeed2bb7..3355227e 100644
--- a/vim/ftplugin/perl.vim
+++ b/vim/ftplugin/perl.vim
@@ -1,6 +1,6 @@
-" Run perl -c on file for the current buffer
+" Run `perl -c` over buffer
nnoremap <LocalLeader>pc :write !perl -c<CR>
-" Run perlcritic on the file for the current buffer
+" Run `perlcritic` over buffer
nnoremap <LocalLeader>pl :write !perlcritic<CR>
-" Run the current buffer through perltidy
+" Filter buffer through `perltidy`
nnoremap <LocalLeader>pt :%!perltidy<CR>