C language > Beginner questions

word completion woes

(1/1)

adrive:
First of all..I'm just starting out C, and I really love Pelles C as it seems very fast, has debugger and word auto complete, all in a small great package!

Now my problem..

Is there a way to trim down what is being displayed during word completion?

Can I limit it so that it automatically lists out only Functions and User declared variables? Currently it seems to lists out so many things that I don't understand whether it's used or not. The list is built base on default's database.

For example,

when you type getch and press ctrl+space, getchar lists out (getchar function) and (getchar define). Isn't this redundant?


Also..im not understanding this option :

Use member list
Check this option to display a list of structure/union members after typing a variable name, followed by a member reference ( . or -> ). This require browse information from the system, or from the current project (Full level). See also System browse information dialog.

I picked "show functions only", the word completion still lists out none-functions..not sure if this option is related?


thanks!!

Pelle:

--- Quote from: adrive on June 19, 2008, 08:44:33 AM ---Is there a way to trim down what is being displayed during word completion?

--- End quote ---
Not at the moment; all matching names are always displayed. You can always make a request for a change...  ;)



--- Quote from: adrive on June 19, 2008, 08:44:33 AM ---Also..im not understanding this option :

Use member list

--- End quote ---
This is for struct and union members only; type struct-name. or struct-name->, and a list of members in that struct/union will be displayed (if the IDE can find the definition)...

adrive:
Thanks Pelles!

i just did :P

Navigation

[0] Message Index

Go to full version