Fix incorrect html-beautify command

"html-beautify -f -" attempts to read from the file "-". To read from stdin, the correct command is "html-beautify -". 

Cheers
This commit is contained in:
Daniel Lundén 2018-12-19 12:58:55 +01:00 committed by GitHub
parent c203080645
commit 411ab72930
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -289,7 +289,7 @@ endif
" HTML
if !exists('g:formatdef_htmlbeautify')
let g:formatdef_htmlbeautify = '"html-beautify -f - -".(&expandtab ? "s ".shiftwidth() : "t")'
let g:formatdef_htmlbeautify = '"html-beautify - -".(&expandtab ? "s ".shiftwidth() : "t")'
endif
if !exists('g:formatdef_tidy_html')