crazy

I'm a little tired but coding for fun with the new NetBeans 6.0 (beta 1). It's freaking me out a little bit, mostly by completing way more code than it ever has before. Auto-complete rocks.
Here's an example. I wanted to type the following line:

battle.trigger(BattleEffectTrigger.INFLICT, attackerUsed, result);

so I typed something like "ba" ctrl+space ".tr" ctrl+space

and get

battle.trigger(trigger, attackerUsed, result);

The first parameter, "trigger", is from the method definition. The other two are NetBeans showing off... it figured out I had local variables with the correct type and similar names, so it filled them in. Then I typed "BET" ctrl+space ".IN" ctrl+space. That's about 14 keystrokes for 66 characters of code. I'm starting to wonder if my IDE is becoming smarter than me.

Re: crazy

I think that would drive me crazy, but it has got to be really cool for people who already know what they are going to type. I am just now getting used to autocompleted words in text messaging...