diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-03-21 10:56:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-21 10:56:31 +0000 |
commit | c0279de661738d4fc28ff05f5114e52db7c90ddc (patch) | |
tree | 56ac22e65fe96f87715bcd89f51ca15fe5fe608c | |
parent | 64c95d4881b9ae7b8e25b65240bb403298db16f8 (diff) | |
parent | 763fcb851284f5caa74b79e14547f59b42019fc8 (diff) | |
download | ale-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.vim | 2 |
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', \}) |