aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/html.vim
blob: 895500f72d9d54b6c5e30fe3d29f3a42d97fce0f (plain) (blame)
1
2
3
4
5
6
7
8
vim9script

# Tidy the whole buffer
export def Tidy(): void
  const view = winsaveview()
  :%!tidy -quiet
  winrestview(view)
enddef