I want to have full code autocompletion. I managed to add core/grails/spring taglibs so that STS does autocomplete tags for me in gsp files. What i want to do now is do same thing for my own custom tag libs. If i create tag lib descriptor by hand and put it in tld folder i can add include to my gsp file like this
<%@ taglib prefix="p" uri="/web-app/WEB-INF/tld/pk.tld" %>
then it all works perfect! bit hassle to add them to each gsp file but i could live with it if i get auto complete.
Question: is there any way to generate tld file based on the grails taglib? attributes are dynamic in a hashmap but i could declare them some way as i want to control if all/correct attributes are used any way.
THANKS!!!