News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

usability issue - code completion

Started by MK0151, January 12, 2013, 06:19:20 PM

Previous topic - Next topic

MK0151

Hey guys,

first of all i realy like the code::blocks ide
but there is an annoying usability issue on the code completion

if you are typing something like "this->set" the result is maybe something like that:

getPara1()
getPara2()
getPara3()
getPara4()
getPara5()
setPara1()

you get 5 unwanted functions / vars and only the last (and the following) is interesting.

Regards
MK0151

MortenMacFly

Quote from: MK0151 on January 12, 2013, 06:19:20 PM
you get 5 unwanted functions / vars and only the last (and the following) is interesting.
And how would you depict whats unwanted? Maybe another user want to actually use the first, second or...?!
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: [url="https://www.codeblocks.org/docs/main_codeblocks_en.html"]https://www.codeblocks.org/docs/main_codeblocks_en.html[/url]
C::B FAQ: [url="https://wiki.codeblocks.org/index.php?title=FAQ"]https://wiki.codeblocks.org/index.php?title=FAQ[/url]

MK0151


MK0151

result now:

i typ "this->set"

getPara1()  <-unwanted
getPara2()  <-unwanted
getPara3()  <-unwanted
getPara4()  <-unwanted
getPara5()  <-unwanted
setPara1()  <-wanted

better result:

setPara1()  <-wanted
setPara2()  <-wanted
setPara3()  <-wanted
setPara4()  <-wanted
setPara5()  <-wanted
setPara6()  <-wanted



oBFusCATed

Can you provide simple self-contained example, which can be used to reproduce the issue?
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

p2rkw

@oBFusCATed: Autocomplete listbox is automatically opened when you type "this->" and it isn't refreshed anymore.

@MK0151: you have to hit ctrl+space to refresh list.

oBFusCATed

Quote from: p2rkw on January 12, 2013, 09:53:55 PM
@oBFusCATed: Autocomplete listbox is automatically opened when you type "this->" and it isn't refreshed anymore.
I know about this.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

MK0151