Hello, I hope this post find you well!
For your consideration I would like to to request an option in the Find Symbol search window to allow for "function declarations"
Example classes in a CPP project:
void ClassA::DoSomething()
void ClassB::DoSomething(float param)
Here, "DoSomething" will return these symbol results
ClassA::DoSomething
ClassB::DoSomething
It would be useful to specify "DoSomething(float)" or similar to return more relevant results:
ClassB::DoSomething
I am not sure how to consider function declarations that include other symbols (as a return type or parameter)