kschaab
Tomato Guru
USA
118 Posts |
Posted - Feb 02 2004 : 5:26:31 PM
|
When completion happens in nested parenthesis where the end parenthesis is the next character methods with parameters completion happens so cursor lands outside the method parenthesis.
For example if you have the method:
bool MyFoo(MyClass myClass) { ... }
and you type if and complete so that you get if () with cursor inside parenthesis and then you type MyFoo and complete you will get if (MyFoo()) with the cursor between the last parenthesis and the one before it instead of between the parenthesis for MyFoo as expected. This behavior holds true for typeof() operator as well. I'm using C#, have not tried this with C++. |
|