From a2281bd121949f2215ee9257e28e2c0966f3f003 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 12 Nov 2017 16:38:09 +1300 Subject: Add guards for presence of b:undo_* var This variable is not set in older Vims (early 6.x), and I think it's worth guarding for. --- vim/after/ftplugin/perl/check.vim | 18 ++++++++++++------ vim/after/ftplugin/perl/lint.vim | 18 ++++++++++++------ vim/after/ftplugin/perl/tidy.vim | 18 ++++++++++++------ 3 files changed, 36 insertions(+), 18 deletions(-) (limited to 'vim/after/ftplugin/perl') diff --git a/vim/after/ftplugin/perl/check.vim b/vim/after/ftplugin/perl/check.vim index 24a174ff..6b057c82 100644 --- a/vim/after/ftplugin/perl/check.vim +++ b/vim/after/ftplugin/perl/check.vim @@ -4,8 +4,10 @@ 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' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_perl_check' +endif " Set up a mapping for the checker, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') @@ -14,16 +16,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') nnoremap \ PerlCheck \ :write !perl -c - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap PerlCheck' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap PerlCheck' + endif " If there isn't a key mapping already, use a default one if !hasmapto('PerlCheck') nmap \ c \ PerlCheck - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap c' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap c' + endif endif endif diff --git a/vim/after/ftplugin/perl/lint.vim b/vim/after/ftplugin/perl/lint.vim index 8f6915f4..86740c81 100644 --- a/vim/after/ftplugin/perl/lint.vim +++ b/vim/after/ftplugin/perl/lint.vim @@ -4,8 +4,10 @@ if exists('b:did_ftplugin_perl_lint') || &compatible finish endif let b:did_ftplugin_perl_lint = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_perl_lint' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_perl_lint' +endif " Set up a mapping for the linter, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') @@ -14,16 +16,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') nnoremap \ PerlLint \ :write !perlcritic - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap PerlLint' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap PerlLint' + endif " If there isn't a key mapping already, use a default one if !hasmapto('PerlLint') nmap \ l \ PerlLint - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap l' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap l' + endif endif endif diff --git a/vim/after/ftplugin/perl/tidy.vim b/vim/after/ftplugin/perl/tidy.vim index b2aa25c3..18033a42 100644 --- a/vim/after/ftplugin/perl/tidy.vim +++ b/vim/after/ftplugin/perl/tidy.vim @@ -4,8 +4,10 @@ if exists('b:did_ftplugin_perl_tidy') || &compatible finish endif let b:did_ftplugin_perl_tidy = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_perl_tidy' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_perl_tidy' +endif " Set up a mapping for the tidier, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') @@ -14,16 +16,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') nnoremap \ PerlTidy \ :%!perltidy - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap PerlTidy' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap PerlTidy' + endif " If there isn't a key mapping already, use a default one if !hasmapto('PerlTidy') nmap \ t \ PerlTidy - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap t' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap t' + endif endif endif -- cgit v1.2.3