autocompletion... the sweetness

Matthew Woehlke mw_triad at users.sourceforge.net
Wed Feb 26 18:50:41 GMT 2014


So I have some structs, let's say they looks like:

struct point { double x, y; };
struct box { point ul, ur, ll, lr; }

And some code:

point center(box b)
{
   double cx = 0.25 * (b.ul.x + b. <-- typing here
}

...and KDevelop suggests:
   b.ul
   b.ul.x
   b.ul.y
  ...etc.

...which I don't remember it doing before (is this new?). And it is *WAY 
COOL*.

To whoever wrote this, and all the rest of the awesome KDevelop folks, 
this is the sort of thing that makes KDevelop an awesome IDE. Thanks!! :-D

-- 
Matthew




More information about the KDevelop mailing list