When i edit xml files (jsp etc) and i put xmlns at the root pointing to some tag library i get IDE autocompletion for these tags. I would like to have the same function for my custom made taglibs. I create taglibs in separate project (plugin) and i would like to import them into a separate project and hook up somehow.
I dont know how can i do that as i dont see tld files generated for my taglib. Is grails taglib a regular jsp taglib or is it just naming colision?
<taglib>
<taglib-uri>
http://www.example.com/taglib
</taglib-uri>
<taglib-location>
/somepath/my.grails.taglib.tld
</taglib-location>
</taglib>
If i could have something like above and then add xmlns in my views i think IDE would autocomplete tags for me.... would it?
Tanks for help