One of the nice features of BBEdit is that it can show a list of errors (e.g. syntax errors in a Ruby program), and clicking on the error will display the line in the source code file.
How can I bring this window up programmatically, e.g. via the command line, AppleScript, or a language module?
In my specific situation, I'm compiling SML/NJ programs. The compiler lists errors in the following format:
codegen.sml:121.31 Error: syntax error: inserting LPAREN
codegen.sml:130.49 Error: syntax error: inserting EQUALOP
When I get compiler errors like that, I'd like BBEdit to display those error messages and let me click on them to display the buggy line in my code.