summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2018-03-21 10:56:31 +0000
committerGitHub <noreply@github.com>2018-03-21 10:56:31 +0000
commitc0279de661738d4fc28ff05f5114e52db7c90ddc (patch)
tree56ac22e65fe96f87715bcd89f51ca15fe5fe608c
parent64c95d4881b9ae7b8e25b65240bb403298db16f8 (diff)
parent763fcb851284f5caa74b79e14547f59b42019fc8 (diff)
downloadale-c0279de661738d4fc28ff05f5114e52db7c90ddc.zip
Merge pull request #1436 from bmihelac/fix-1435-msgfmt-output-stdout
fix: po msgfmt output to stdout (#1435)
-rw-r--r--ale_linters/po/msgfmt.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/po/msgfmt.vim b/ale_linters/po/msgfmt.vim
index 60c25d30..578792bf 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',
\})