I guess I'm a quick typer because if I type the characters

ArrayList myArray;
myArray.size(

NetBeans auto complete puts the following in my editor

ArrayList myArray;
myArray.add(someVar);

Why? Because the auto completion doesn't have time to find and filter all the method names by the time I type '('. So it takes the the first one from the list it has created and filtered so far: "add". Grrrr!!!

I want to keep method name completion, but I don't want it to happen on '('. I haven't been able to find out how to fine tune this awesome feature to stop it from mangling my code.

link|improve this question

44% accept rate
I've tried to type really fast those characters in netbeans and I never get "add" instead of "size" if I manually type "size". It's really weird that problem you're having. – Ernesto Jan 17 at 15:14
Isn't it! It's super annoying!! I run into it all the time when I'm coding... I've actually learned to pause before typing '(' and wait for the autocompletion to catch up... super annoying!! Perhaps your computer is much faster than mine and gets the autocompletion before you finish typing. I type 100+ words a minute on a good day, that means those 5 characters go by in less than half a second. Lots of times I don't even see the autocompletion suggestions before I've finished and the code has been automangled. – Jason Jan 28 at 3:26
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.