aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/vim/lint.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-19 23:32:34 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-19 23:32:34 +1300
commitb7c4ed6d716eca106ff0734fb12b3c146fe75132 (patch)
tree05e25d9bb75ec270e133fc8276e668427ce53a68 /vim/after/ftplugin/vim/lint.vim
parentAdd vim/compiler scripts to vint targets (diff)
downloaddotfiles-b7c4ed6d716eca106ff0734fb12b3c146fe75132.tar.gz
dotfiles-b7c4ed6d716eca106ff0734fb12b3c146fe75132.zip
Use quickfix window for check/lint
Diffstat (limited to 'vim/after/ftplugin/vim/lint.vim')
-rw-r--r--vim/after/ftplugin/vim/lint.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/after/ftplugin/vim/lint.vim b/vim/after/ftplugin/vim/lint.vim
index f097ce35..243f9463 100644
--- a/vim/after/ftplugin/vim/lint.vim
+++ b/vim/after/ftplugin/vim/lint.vim
@@ -15,10 +15,10 @@ if !exists('*s:VimLint')
let l:save_makeprg = &l:makeprg
let l:save_errorformat = &l:errorformat
compiler vint
- lmake!
+ make!
let &l:makeprg = l:save_makeprg
let &l:errorformat = l:save_errorformat
- lwindow
+ cwindow
endfunction
endif