Hello all,
I want to report about autocompletion and tooltips.
See the following code: class SomeClass
{
void DoSomething() {}
void DoSomething(int i) {}
};
SomeClass someObject;
When I type "someObject." a listbox appears with "DoSomething" selected and a tooltip indicating "void DoSomething() {...}".
I have two remarks on this:
a. One can't see that there is also a "void DoSomething(int i) {...}", so maybe the tooltip could indicate "void DoSomething(...) {...}" or "void DoSomething() {...} [1 of 2]"
b. If I accept "DoSomething", the cursor is placed after "()". I would expect the cursor to be inside, so between "(" and ")", because one could enter something here (due to the second form, with int i). If one doesn't want to do that, he/she will press the right arrow key. This is more natural than pressing the left arrow key, in my opinion.
Thank you in advance.
With kind regards,
Patrick Luja