parsonsmatt/intero-neovim

Not handling Neomake multiple makers?

Closed this issue · 3 comments

When I have a hlint maker and am using intero-neovim, if I get errors from both plugins, they go into two different pop up lists instead of the same one - this means half the screen gets taken over by it. Is there something we can do about this? Anyone seen that?

jez commented

This is probably happening because Intero is populating the quickfix list (errors for the entire project), and hlint is populating the location list (errors for a single file). It might make sense to try to fix this in Neomake, by adding a flag to append all errors to the quickfix list. You might want to look through their issue tracker - I doubt this is the first time this has come up.

(Or you could do what I did, and just uninstall hlint :P)

It's surprising that it makes two different lists for this, since it's neomake under the hood. Do other plugins have this issue?