xlcteam / nxtIDE

All you need to play with LEGO NXT robots and Python
http://xlcteam.github.com/nxtIDE/
15 stars 7 forks source link

More intelligent code completion. #69

Open mrshu opened 10 years ago

mrshu commented 10 years ago

Suppose we have written something like this in nxted

OnFwd(

Now what we write next will very probably be some kind of OUT* constant. How come that our autocompletition system cannot suggest us that? We already have the information about this argument (docs say it's a motor and motor will be defined in terms of OUT*) so it should be quite straightforward to implement this.

@adman what do you think?

Adman commented 10 years ago

When we write OnFwd( it should show some "choosebox" that user can choose constant from it.