aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/perl/check.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/perl/check.vim')
-rw-r--r--vim/after/ftplugin/perl/check.vim29
1 files changed, 29 insertions, 0 deletions
diff --git a/vim/after/ftplugin/perl/check.vim b/vim/after/ftplugin/perl/check.vim
new file mode 100644
index 00000000..24a174ff
--- /dev/null
+++ b/vim/after/ftplugin/perl/check.vim
@@ -0,0 +1,29 @@
+" Only do this when not done yet for this buffer
+" Also do nothing if 'compatible' enabled
+if exists('b:did_ftplugin_perl_check') || &compatible
+ finish
+endif
+let b:did_ftplugin_perl_check = 1
+let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|unlet b:did_ftplugin_perl_check'
+
+" Set up a mapping for the checker, if we're allowed
+if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps')
+
+ " Define a mapping target
+ nnoremap <buffer> <silent> <unique>
+ \ <Plug>PerlCheck
+ \ :<C-U>write !perl -c<CR>
+ let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|nunmap <buffer> <Plug>PerlCheck'
+
+ " If there isn't a key mapping already, use a default one
+ if !hasmapto('<Plug>PerlCheck')
+ nmap <buffer> <unique>
+ \ <LocalLeader>c
+ \ <Plug>PerlCheck
+ let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|nunmap <buffer> <LocalLeader>c'
+ endif
+
+endif