ENSIME Error Buffer Auto Update

Is there a way to make the ENSIME error buffer (the one that is called using Cc Cv e ) automatically update when I save the Scala source file?

+7
source share
1 answer

Try adding the following code after loading ensime:

 (add-hook 'ensime-source-buffer-saved-hook 'ensime-show-all-errors-and-warnings) 
0
source

All Articles