aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/html
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/html')
-rw-r--r--vim/after/ftplugin/html/lint.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/after/ftplugin/html/lint.vim b/vim/after/ftplugin/html/lint.vim
index 103355ab..47ab3766 100644
--- a/vim/after/ftplugin/html/lint.vim
+++ b/vim/after/ftplugin/html/lint.vim
@@ -17,10 +17,10 @@ if !exists('*s:HtmlLint')
let l:save_makeprg = &l:makeprg
let l:save_errorformat = &l:errorformat
compiler tidy
- lmake!
+ make!
let &l:makeprg = l:save_makeprg
let &l:errorformat = l:save_errorformat
- lwindow
+ cwindow
endfunction
endif