derekwyatt / vim-scala

My work on integration of Scala into Vim - not a ton here, but useful for me.
http://derekwyatt.org
Apache License 2.0
1.09k stars 144 forks source link

Setting `compiler sbt` stops the quick fix window from opening #162

Closed matteematt closed 4 years ago

matteematt commented 4 years ago

I am not sure if this is the correct place to ask this but I have had an issue today where I have not been able to read in an error file into the quick fix menu when a Scala file is open in a buffer. I have tracked it down to the line compiler sbt in ftplugin/scala.vim, when I comment that line out the quickfix window then works as expected. I am happy to leave it commented out, but I was wondering if anyone would know why this issue would occur?

benknoble commented 4 years ago

Compiler scripts often set the errorformat. If that doesn't match your error file, that can be an issue. However, it is usually a local option, so it shouldn't affect other buffers (unless set globally)

matteematt commented 4 years ago

Ok that makes sense. I can just leave it commented out for now so it doesn't interfere with my errorformat. Thanks for the reply