Hey guys, I have a very general question about macros and type checking/autocomplete with an IDE. I’ll use htmlgen as a reference point because I think thats a very basic example of type checking with a macro. If you use one of the html macros, it will accept any attribute you pass into it, i.e no feedback or autocomplete from the IDE, but when it compiles it will throw an error if it detects anything that isnt one of the allowed attributes for that element. My question is, is there a way to implement more robust type checking in macros so that it will show errors and autocomplete with the IDE? I guess this is like.. nimsuggest support?