diff options
author | Horacio Sanson <hsanson@gmail.com> | 2020-04-19 18:55:47 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-19 18:55:47 +0900 |
commit | 3281321d5ccf2eeee235156503b5fe4a7c268caa (patch) | |
tree | 31a10a4716052b6061e0e55c785b38f20ba6793c | |
parent | 64b9a2708d1b5c2ce2c04eee1f64508c75b7bbb4 (diff) | |
parent | 46d7ee564fcc496e0e6681a657ccad4cb7c2838c (diff) | |
download | ale-3281321d5ccf2eeee235156503b5fe4a7c268caa.zip |
Merge pull request #3027 from ndtho8205/fix-kotlinc-stderr
Fix 3011 - not catching kotlinc output on stderr
-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, |