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 - smart autocomplete
Summary: smart autocomplete
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 7.0.1
Hardware: PC Windows XP
: P3 normal with 1 vote (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-09-25 04:01 UTC by battletoad
Modified: 2014-07-03 15:47 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.