Feature #5252 2011-01-24 12:26

xakepp35

Code Completion Sorting

all IDE's starting from Borland Delphi and up to last CodeGear RADStudio offers 2 ways of CodeCompletion items sorting. Alphabetically and Source. VisualStudio and C::B lacks "Source" method.

when Source sorting enabled items in CC box are sorted not alphabetically, but as they appears in source code. for example if one have code:

class a1 { int z; int a; }

class a2:public a1{ int y; int b; }

source sorting for a2 object codecompletion box must be implemented like

int a2::y int a2::b ----------- int a1::z int a1::a

inherited class fields appears first, and fields are sorted as they appears in source code.

this can help developers, who works with structures and classes developed by others. ability to achieve better understanding of class' structure in a rapid way (used in delphi, all OOP).

sorry for bad english

Category
Plugins
Status
Open
Close date
 
Assigned to
ollydbg
ollydbg 2012-07-06 23:29

Add another request and discussion: Can code completion be made contextual? - http://forums.codeblocks.org/index.php/topic,16556.msg112330.html#msg112330