From 411ab72930aa4bc6bc722a2060840d7976a70703 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Lund=C3=A9n?= Date: Wed, 19 Dec 2018 12:58:55 +0100 Subject: [PATCH] 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 --- plugin/defaults.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/defaults.vim b/plugin/defaults.vim index 01a3218..868add3 100644 --- a/plugin/defaults.vim +++ b/plugin/defaults.vim @@ -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')