aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/perl/lint.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-16 21:59:31 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-16 21:59:31 +1200
commit88defc4fc528bad2b0664c634d95e4363665472d (patch)
tree333f2a15365563c5af18e92fa331de0190ae9046 /vim/after/ftplugin/perl/lint.vim
parentCorrect g:current_compiler setting (diff)
downloaddotfiles-88defc4fc528bad2b0664c634d95e4363665472d.tar.gz
dotfiles-88defc4fc528bad2b0664c634d95e4363665472d.zip
Use short-circuit for no-mapping check
Diffstat (limited to 'vim/after/ftplugin/perl/lint.vim')
-rw-r--r--vim/after/ftplugin/perl/lint.vim36
1 files changed, 18 insertions, 18 deletions
diff --git a/vim/after/ftplugin/perl/lint.vim b/vim/after/ftplugin/perl/lint.vim
index 235ee69a..50770a13 100644
--- a/vim/after/ftplugin/perl/lint.vim
+++ b/vim/after/ftplugin/perl/lint.vim
@@ -21,27 +21,27 @@ function! s:PerlLint()
cwindow
endfunction
-" Set up a mapping for the linter, if we're allowed
-if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps')
+" Stop here if the user doesn't want ftplugin mappings
+if exists('g:no_plugin_maps') || exists('g:no_perl_maps')
+ finish
+endif
- " Define a mapping target
- nnoremap <buffer> <silent> <unique>
+" Define a mapping target
+nnoremap <buffer> <silent> <unique>
+ \ <Plug>PerlLint
+ \ :<C-U>call <SID>PerlLint()<CR>
+if exists('b:undo_ftplugin')
+ let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|nunmap <buffer> <Plug>PerlLint'
+endif
+
+" If there isn't a key mapping already, use a default one
+if !hasmapto('<Plug>PerlLint')
+ nmap <buffer> <unique>
+ \ <LocalLeader>l
\ <Plug>PerlLint
- \ :<C-U>call <SID>PerlLint()<CR>
if exists('b:undo_ftplugin')
let b:undo_ftplugin = b:undo_ftplugin
- \ . '|nunmap <buffer> <Plug>PerlLint'
- endif
-
- " If there isn't a key mapping already, use a default one
- if !hasmapto('<Plug>PerlLint')
- nmap <buffer> <unique>
- \ <LocalLeader>l
- \ <Plug>PerlLint
- if exists('b:undo_ftplugin')
- let b:undo_ftplugin = b:undo_ftplugin
- \ . '|nunmap <buffer> <LocalLeader>l'
- endif
+ \ . '|nunmap <buffer> <LocalLeader>l'
endif
-
endif