aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/html.vim
blob: 2ce5288d4fb22639d5e939a548b96651ab141827 (plain) (blame)
1
2
3
4
5
6
" Tidy the whole buffer
function! html#Tidy() abort
  let view = winsaveview()
  %!tidy -quiet
  call winrestview(view)
endfunction