The current code-folding behavior of the ACE editor is to fold XML from:
<TAG DATA=FOO DATA=BAR>
<blah>
</TAG>
into: <tag ... </tag>
How can I get it instead to do something more along the lines of:
<tag data=foo data=bar> ... </tag>
IE, I want to keep the attributes of the starting tag unfolded. Is there an easy way to do this? What files should I be editing?
Thanks!