Mon, 04 Dec 2017 14:43:44 -0500
use the perl compiler plugin, maybe i was confused
.vim/after/syntax/perl/custom.vim | file | annotate | diff | comparison | revisions | |
.vimrc | file | annotate | diff | comparison | revisions |
--- a/.vim/after/syntax/perl/custom.vim +++ b/.vim/after/syntax/perl/custom.vim @@ -1,8 +1,5 @@ compiler perl -" even with g:perl_compiler_force_warnings = 0, perl -w is used and -" that's just noisy with intentional no-warnings blocks out there -setlocal makeprg=perl\ -c\ %\ $* setlocal iskeyword+=: if g:perl_tidy_equalprg
--- a/.vimrc +++ b/.vimrc @@ -308,7 +308,9 @@ augroup END let perl_include_pod = 1 let perl_sub_signatures = 1 let perl_sync_dist = 200 -let g:perl_tidy_equalprg = executable('perltidy') ? 1 : 0 + +let g:perl_compiler_force_warnings = 0 +let g:perl_tidy_equalprg = executable('perltidy') ? 1 : 0 " }}} " Plugin settings {{{