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/lint.vim | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'vim/after/ftplugin/perl/lint.vim') 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 -- cgit v1.2.3