------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139258 Summary: C++ code completion shouldn't popup if the current word exactly matches something in the list. Product: kdevelop Version: 3.3.94 Platform: Ubuntu Packages OS/Version: Linux Status: NEW Severity: normal Priority: NOR Component: general AssignedTo: kdevelop-bugs kdevelop org ReportedBy: tdh29 cam ac uk Version: 3.3.94 (using KDE KDE 3.5.5) Installed from: Ubuntu Packages OS: Linux E.g.: QPushButton* mybutton = new QPushButton("A button"); connect(mybutton After you've typed that, there is no point showing a popup that just lists " QPushButton* mybutton; local" or whatever. It should not not show the popup if the current word matches one in the completion list. Just anticipating something: I don't think it should pop up even in this situation: QPushButton* mybutton = new QPushButton("A button"); QPushButton* mybutton_two = new QPushButton("A button"); QPushButton* mybutton_three = new QPushButton("A button"); connect(mybutton It should popup after some minimum number of letters (say after 'mybu') and then disappear when you get to 'mybutton' and then come back for 'mybutton_'. That is the least annoying method in my amazing opinion! Cheers