From 763fcb851284f5caa74b79e14547f59b42019fc8 Mon Sep 17 00:00:00 2001 From: Bojan Mihelac Date: Wed, 21 Mar 2018 09:21:20 +0100 Subject: [PATCH] fix: po msgfmt output to stdout (#1435) --- ale_linters/po/msgfmt.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ale_linters/po/msgfmt.vim b/ale_linters/po/msgfmt.vim index 60c25d3..578792b 100644 --- a/ale_linters/po/msgfmt.vim +++ b/ale_linters/po/msgfmt.vim @@ -5,6 +5,6 @@ call ale#linter#Define('po', { \ 'name': 'msgfmt', \ 'executable': 'msgfmt', \ 'output_stream': 'stderr', -\ 'command': 'msgfmt --statistics %t', +\ 'command': 'msgfmt --statistics --output-file=- %t', \ 'callback': 'ale#handlers#unix#HandleAsWarning', \})