Hi All,
I'm new to this forum, but have been working with Code::Blocks for some while now and since I discovery it I really liked it. It's the best source code editor ever !! Thank you for the great job!
My questions now (sorry if this is well know, but I couldn't find it in the help or FAQs):
1- Is code completion working only in the part of the code that a variable is defined, for example? Is it that smart?
2- It doesn't seem to be working for me in the following example:
int AAA;
void main()
{
int BBB;
int CCC;
}
That's what's happening:
-> If the cursor is inside the main() function, BBB and CCC get completed, BUT AAA is not found (no completions at all).
-> If the cursor is outside the main() function, none of the variables are completed.
BTW, I have the latest SVN version (compiled here using MinGW).
Thank you,
daniloz