Given xml like this:
<xsd:schema>
<xsd:simpleType name="ForecastQuantityType">
<xsd:restriction base="xsd:int">
<xsd:maxExclusive value="10000000" />
</xsd:restriction>
</xsd:simpleType>
<xsd:element name="OrderTypeToSupplier">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
<xsd:maxLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:schema>
If I collapse all, and then open the top node, I get this:
<xsd:schema>
[+] <xsd:simpleType name="ForecastQuantityType" ...>
[+] <xsd:element name="OrderTypeToSupplier" ...>
</xsd:schema>
I would like to be able to place the cursor under the simpleType element and expand it and its children. Currently I can expand all, which expands the entire file. I would like to be able to "expand this node fully". I assume (although haven't checked) that this would also be useful in java coding (I don't use folding in java much).
Is this clear? I realise this is a low priority issue, but I think it would be useful functionality that would be easy to add.