From 88defc4fc528bad2b0664c634d95e4363665472d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 16 Jun 2018 21:59:31 +1200 Subject: Use short-circuit for no-mapping check --- vim/after/ftplugin/html/tidy.vim | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 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 6e612feb..3d14e79e 100644 --- a/vim/after/ftplugin/html/tidy.vim +++ b/vim/after/ftplugin/html/tidy.vim @@ -13,27 +13,27 @@ if exists('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') +" Stop here if the user doesn't want ftplugin mappings +if exists('g:no_plugin_maps') || exists('g:no_html_maps') + finish +endif - " Define a mapping target - nnoremap +" Define a mapping target +nnoremap + \ HtmlTidy + \ :%!tidy -quiet +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 - \ :%!tidy -quiet 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 - if exists('b:undo_ftplugin') - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap t' - endif + \ . '|nunmap t' endif - endif -- cgit v1.2.3