Code::Blocks always shows suggestions from other open source files. For example, if I write a function in another file like func(int a, char ch), Code::Blocks will automatically suggest func(int a, char ch) when I type func in another file.
#include<iostream>
using namespace std;
int func(int a,char c)
{
return 1;
}
int main()
{
return 0;
}
How to configure the IDE to make Code::Blocks not show suggestions from other open source files.
