From 670c735799879ae066b9a5249356a4d872514951 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 17 Jun 2018 11:53:31 +1200 Subject: Use autoload function for temp-makeprg :lmake --- vim/after/ftplugin/vim/lint.vim | 25 ++++++------------------- 1 file changed, 6 insertions(+), 19 deletions(-) (limited to 'vim/after/ftplugin/vim/lint.vim') diff --git a/vim/after/ftplugin/vim/lint.vim b/vim/after/ftplugin/vim/lint.vim index 1e4f7d39..bd8c1da4 100644 --- a/vim/after/ftplugin/vim/lint.vim +++ b/vim/after/ftplugin/vim/lint.vim @@ -10,33 +10,20 @@ if exists('b:did_ftplugin_vim_lint') finish endif +" Don't load if the user doesn't want ftplugin mappings +if exists('g:no_plugin_maps') || exists('g:no_vim_maps') + finish +endif + " Flag as loaded let b:did_ftplugin_vim_lint = 1 let b:undo_ftplugin = b:undo_ftplugin \ . '|unlet b:did_ftplugin_vim_lint' -" Build function for linter -function! s:VimLint() - if exists('b:current_compiler') - let l:save_compiler = b:current_compiler - endif - compiler vint - lmake! - lwindow - if exists('l:save_compiler') - execute 'compiler ' . l:save_compiler - endif -endfunction - -" Stop here if the user doesn't want ftplugin mappings -if exists('g:no_plugin_maps') || exists('g:no_vim_maps') - finish -endif - " Define a mapping target nnoremap \ VimLint - \ :call VimLint() + \ :call compiler#Make('vint') let b:undo_ftplugin = b:undo_ftplugin \ . '|nunmap VimLint' -- cgit v1.2.3