Can Grails output error messages in emacs format?
Ant has a -e
option for outputting error messages that can be parsed by emacs' compile
command. For example, it is possible to do M-x compile
, ant -e
, then navigate to any errors with C-x `.
Is it possible to make grails output its compilation errors in this format? Alternatively, is there an e开发者_运维百科macs variable that can be customized to handle error messages in the format that grails uses?
I don't know what grails errors look like, but you can probably use compilation-error-regexp-alist
. It's quite flexible.
精彩评论