diff options
author | Tho Nguyen Duc <ndtho8205@gmail.com> | 2020-03-06 13:44:30 +0900 |
---|---|---|
committer | Tho Nguyen Duc <ndtho8205@gmail.com> | 2020-03-06 13:44:30 +0900 |
commit | 46d7ee564fcc496e0e6681a657ccad4cb7c2838c (patch) | |
tree | 21fcf148b7b86f1c344b9aee5d495d65d573ef01 /ale_linters/kotlin | |
parent | 8f7ccdc5e95302223c516a0113f5af7e075dc041 (diff) | |
download | ale-46d7ee564fcc496e0e6681a657ccad4cb7c2838c.zip |
Fix 3011 - not catching kotlinc output on stderr
Diffstat (limited to 'ale_linters/kotlin')
-rw-r--r-- | ale_linters/kotlin/kotlinc.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ale_linters/kotlin/kotlinc.vim b/ale_linters/kotlin/kotlinc.vim index 3c6854fa..66c075be 100644 --- a/ale_linters/kotlin/kotlinc.vim +++ b/ale_linters/kotlin/kotlinc.vim @@ -174,6 +174,7 @@ endfunction call ale#linter#Define('kotlin', { \ 'name': 'kotlinc', \ 'executable': 'kotlinc', +\ 'output_stream': 'stderr', \ 'command': function('ale_linters#kotlin#kotlinc#RunWithImportPaths'), \ 'callback': 'ale_linters#kotlin#kotlinc#Handle', \ 'lint_file': 1, |