Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => CodeCompletion redesign => Topic started by: ollydbg on July 10, 2012, 05:14:01 pm

Title: AutoSuggestion list issue
Post by: ollydbg on July 10, 2012, 05:14:01 pm
When entering something, I want to enter "m_TemplateArgument", but will entering, the shown suggestion list show "m_TemplateAlias" in the last line, the item "m_TemplateArgument" is truncated. (I need to scroll down to see the item "m_TemplateArgument")

See the images below:
(http://i46.tinypic.com/vrvj1i.png)

Hope it should be fixed. So that the "m_TemplateAlias" should show in the top or middle of the auto suggestion list.
Title: Re: AutoSuggestion list issue
Post by: oBFusCATed on July 10, 2012, 05:54:44 pm
You need to implement dynamic filling of the list, but as far as I know this is not possible.
Title: Re: AutoSuggestion list issue
Post by: ptDev on July 10, 2012, 07:58:45 pm
You need to implement dynamic filling of the list, but as far as I know this is not possible.

It is possible, one can manually create the list on every keypress and then update it in scintilla, but it is quite a lot of work, as we would need to implement the heuristics ourselves.
Title: Re: AutoSuggestion list issue
Post by: oBFusCATed on July 11, 2012, 12:34:05 am
ptDev: have you tried it?