diff options
author | Bojan Mihelac <bmihelac@mihelac.org> | 2018-03-21 09:21:20 +0100 |
---|---|---|
committer | Bojan Mihelac <bmihelac@mihelac.org> | 2018-03-21 09:21:20 +0100 |
commit | 763fcb851284f5caa74b79e14547f59b42019fc8 (patch) | |
tree | 56ac22e65fe96f87715bcd89f51ca15fe5fe608c | |
parent | 64c95d4881b9ae7b8e25b65240bb403298db16f8 (diff) | |
download | ale-763fcb851284f5caa74b79e14547f59b42019fc8.zip |
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', \}) |