aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/html.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/ftplugin/html.vim')
-rw-r--r--vim/ftplugin/html.vim7
1 files changed, 1 insertions, 6 deletions
diff --git a/vim/ftplugin/html.vim b/vim/ftplugin/html.vim
index d705bd71..4d3991f3 100644
--- a/vim/ftplugin/html.vim
+++ b/vim/ftplugin/html.vim
@@ -1,10 +1,5 @@
" Run tidy -eq -utf8 on file for the current buffer
-if exists('*shellescape')
- function s:HTMLTidy()
- execute '!tidy -eq -utf8 ' . shellescape(expand('%'))
- endfunction
- nnoremap <LocalLeader>v :execute :<C-U>call <SID>HTMLTidy()<CR>
-endif
+nnoremap <LocalLeader>v :write !tidy -eq -utf8<CR>
" Make a bare URL into a link to itself
function! s:UrlLink()