In files where you have lots of rather small classes and structs, the members dropdown list becomes unhandy. (some files over here have up to 20 helper classes all with 3 or 4 functions and similar names, thats looks messy)
What would be really nice, when VA could detect cases where you have many different classes/structs in the file that it organizes the members differently:
- either group them under their class/struct and make them hidden, expanding on mouseover (yes, I know its tricky to implement)
- dont repeat the class/struct name after the first line but keep the indentation.
e.g.:
SomeClass.SomeClass
.AMemberFunc
.AnotherOne
.operator+=
.operator=
.operator==
AnotherClass.AnotherClass
.FunctionX
.FunctionY
.~AnotherClass
This would also create a almost tree-like appearance and makes it clearer.