views:

92

answers:

1

Hello All

I currently experimenting with different lightweight texteditors for Scala development. JEdit seems to enable the user to make many tweaks. However im currently having a problem with its error and warning highlightning, via the Console plugin. It marks some lines as errors without actually being it. Thats why I wanted to hear if any actually have a configuration of the sbt error patterns, which they would share with me:) The only thing I have found is here http://wiki.liftweb.net/index.php?title=SetUp_jEdit and that is not the correct regex. Hoping you are out there (the solution) Regards Stefan

+1  A: 

Just to document this question. The answer is:

Error: [error](\s)(\w):([\|\w|.]):(\d):(\s)([\w*|(\s)|\W]*)

Warn: [warn](\s)(\w):([\|\w|.]):(\d):(\s)([\w*|(\s)|\W]*)

Extra:

Filename: $3

Line number: $4

Error message: $6

Stefan