This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 202621

Summary: smart autocomplete
Product: cnd Reporter: battletoad
Component: Code CompletionAssignee: issues@cnd <issues>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 7.0.1   
Hardware: PC   
OS: Windows XP   
Issue Type: ENHANCEMENT Exception Reporter:

Description battletoad 2011-09-25 04:01:35 UTC
If i have code someClass::blabla()
and below i press autocomplete
on following code in code someClass::<ctrl+space>abla();
it will set not someClass::blabla()abla(); rubbish
but correct string finally, just like it working at KDevelop.
Comment 1 Vladimir Voskresensky 2011-09-25 17:58:06 UTC
Let me clarify:
You have code 
someClass::blabla()
you invoke completion at "|"
someClass::|blabla()
you choose 'method' from list and would like to see
someClass::method()
instead of current behavior where you see
someClass::method()blabla()

right?
Comment 2 sindisil 2014-07-03 15:47:37 UTC
Something like IntelliJ's "Complete with tab" feature (see "Finishing with Tab" on http://blog.jetbrains.com/objc/2012/05/appcode-code-completion-101/) would be most excellent. That way one could select on the fly between overwriting the rest of any existing symbol and inserting while leaving the existing text in place.