I use the IntelliJ Idea 10 IDE to develop my Grails, and although it is great for developing βstandardβ metaclass methods, for example, for domain classes (save, findBy, etc.), it (obviously) cannot collect methods, added by plugins or my own code.
Although I do not expect the IDE to be able to automatically pick them up, I am optimistic about whether there is a way to tell IntelliJ that, for example, "myMethod" is added to all the objects in the domain and that it takes a map and returns "myType".
This is a long shot that I know, but does anyone know how to do this in the config, plugin or some smoke mirrors so that I can: a) stop skipping simple, silly typos and b) get auto-complete?
source share