diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-07-23 15:04:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-23 15:04:55 +0100 |
commit | 11339ca730cbd3462bc81b565596ef0c9c3c561a (patch) | |
tree | 8e4ea320832b622d90ec4375f2fea37209cf7bcc | |
parent | f6d18a0b10b6aa682ebdbfaba623548aa51aee29 (diff) | |
parent | e3749c4a7526cced0ca54445c2267b470e202538 (diff) | |
download | ale-11339ca730cbd3462bc81b565596ef0c9c3c561a.zip |
Merge pull request #1745 from sharils/master
Work around hot-reloading issue again
-rw-r--r-- | ale_linters/elixir/dialyxir.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/elixir/dialyxir.vim b/ale_linters/elixir/dialyxir.vim index 5ef3a047..bba0ae14 100644 --- a/ale_linters/elixir/dialyxir.vim +++ b/ale_linters/elixir/dialyxir.vim @@ -28,7 +28,7 @@ endfunction call ale#linter#Define('elixir', { \ 'name': 'dialyxir', \ 'executable': 'mix', -\ 'command': 'mix dialyzer', +\ 'command': 'mix help dialyzer && mix dialyzer', \ 'callback': 'ale_linters#elixir#dialyxir#Handle', \}) |