aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/ftplugin/html.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/ftplugin/html.vim b/vim/ftplugin/html.vim
index 4d3991f3..3bd1dbdf 100644
--- a/vim/ftplugin/html.vim
+++ b/vim/ftplugin/html.vim
@@ -1,5 +1,5 @@
-" Run tidy -eq -utf8 on file for the current buffer
-nnoremap <LocalLeader>v :write !tidy -eq -utf8<CR>
+" Run `tidy -errors -quiet` for the current buffer
+nnoremap <LocalLeader>c :write !tidy -errors -quiet -utf8<CR>
" Make a bare URL into a link to itself
function! s:UrlLink()