aboutsummaryrefslogtreecommitdiff
path: root/vim/after
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-19 22:49:18 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-19 22:49:18 +1300
commit932d1d033fb203c4da5f333cf44691dcf43fe7c9 (patch)
tree8d6411bcc13cf3c9e149bdd1b08ed45dc8f1baf9 /vim/after
parentUse :compiler scripts for makeprg setup (diff)
downloaddotfiles-932d1d033fb203c4da5f333cf44691dcf43fe7c9.tar.gz
dotfiles-932d1d033fb203c4da5f333cf44691dcf43fe7c9.zip
Use :compiler quickfix systems for Vim/HTML lint
Diffstat (limited to 'vim/after')
-rw-r--r--vim/after/ftplugin/html/lint.vim15
-rw-r--r--vim/after/ftplugin/vim/lint.vim15
2 files changed, 28 insertions, 2 deletions
diff --git a/vim/after/ftplugin/html/lint.vim b/vim/after/ftplugin/html/lint.vim
index 3ac760ed..103355ab 100644
--- a/vim/after/ftplugin/html/lint.vim
+++ b/vim/after/ftplugin/html/lint.vim
@@ -11,13 +11,26 @@ if exists('b:undo_ftplugin')
\ . '|unlet b:did_ftplugin_html_lint'
endif
+" Build function for linter
+if !exists('*s:HtmlLint')
+ function s:HtmlLint()
+ let l:save_makeprg = &l:makeprg
+ let l:save_errorformat = &l:errorformat
+ compiler tidy
+ lmake!
+ let &l:makeprg = l:save_makeprg
+ let &l:errorformat = l:save_errorformat
+ lwindow
+ endfunction
+endif
+
" Set up a mapping for the linter, if we're allowed
if !exists('g:no_plugin_maps') && !exists('g:no_html_maps')
" Define a mapping target
nnoremap <buffer> <silent> <unique>
\ <Plug>HtmlLint
- \ :<C-U>write !tidy -errors -quiet<CR>
+ \ :<C-U>call <SID>HtmlLint()<CR>
if exists('b:undo_ftplugin')
let b:undo_ftplugin = b:undo_ftplugin
\ . '|nunmap <buffer> <Plug>HtmlLint'
diff --git a/vim/after/ftplugin/vim/lint.vim b/vim/after/ftplugin/vim/lint.vim
index 1b557593..f097ce35 100644
--- a/vim/after/ftplugin/vim/lint.vim
+++ b/vim/after/ftplugin/vim/lint.vim
@@ -9,13 +9,26 @@ if exists('b:undo_ftplugin')
\ . '|unlet b:did_ftplugin_vim_lint'
endif
+" Build function for checker
+if !exists('*s:VimLint')
+ function s:VimLint()
+ let l:save_makeprg = &l:makeprg
+ let l:save_errorformat = &l:errorformat
+ compiler vint
+ lmake!
+ let &l:makeprg = l:save_makeprg
+ let &l:errorformat = l:save_errorformat
+ lwindow
+ endfunction
+endif
+
" Set up a mapping for the linter, if we're allowed
if !exists('g:no_plugin_maps') && !exists('g:no_vim_maps')
" Define a mapping target
nnoremap <buffer> <silent> <unique>
\ <Plug>VimLint
- \ :<C-U>write !vint -s /dev/stdin<CR>
+ \ :<C-U>call <SID>VimLint()<CR>
if exists('b:undo_ftplugin')
let b:undo_ftplugin = b:undo_ftplugin
\ . '|nunmap <buffer> <Plug>VimLint'