aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/vim/lint.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-17 21:57:54 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-17 21:57:54 +1200
commite2e6288cf3680469d6f1b3f257876c6ca2f88ac0 (patch)
tree06ce87523cbe18d960838d1784943a49c226bc97 /vim/after/ftplugin/vim/lint.vim
parentMerge branch 'release/v0.54.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-e2e6288cf3680469d6f1b3f257876c6ca2f88ac0.tar.gz
dotfiles-e2e6288cf3680469d6f1b3f257876c6ca2f88ac0.zip
Merge branch 'release/v0.55.0'v0.55.0
* release/v0.55.0: Bump VERSION Update auto_cache_dirs.vim Update markdown_autoformat.vim Update insert_suspend_hlsearch.vim Use autoload function for tidy filters Refine compiler#Make() function Use autoload function for temp-makeprg :lmake Add local copy of php.vim compiler
Diffstat (limited to 'vim/after/ftplugin/vim/lint.vim')
-rw-r--r--vim/after/ftplugin/vim/lint.vim25
1 files changed, 6 insertions, 19 deletions
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 <buffer> <silent> <unique>
\ <Plug>VimLint
- \ :<C-U>call <SID>VimLint()<CR>
+ \ :<C-U>call compiler#Make('vint')<CR>
let b:undo_ftplugin = b:undo_ftplugin
\ . '|nunmap <buffer> <Plug>VimLint'