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/html/tidy.vim | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'vim/after/ftplugin/html/tidy.vim') diff --git a/vim/after/ftplugin/html/tidy.vim b/vim/after/ftplugin/html/tidy.vim index e5d24541..519a7cd6 100644 --- a/vim/after/ftplugin/html/tidy.vim +++ b/vim/after/ftplugin/html/tidy.vim @@ -4,8 +4,10 @@ if exists('b:did_ftplugin_html_tidy') || &compatible finish endif let b:did_ftplugin_html_tidy = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_html_tidy' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_html_tidy' +endif " Set up a mapping for the tidier, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_html_maps') @@ -14,16 +16,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_html_maps') nnoremap \ HtmlTidy \ :%!tidy -quiet - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap HtmlTidy' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap HtmlTidy' + endif " If there isn't a key mapping already, use a default one if !hasmapto('HtmlTidy') nmap \ t \ HtmlTidy - 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