1

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;
}

Code::Blocks  code completion suggestion

How to configure the IDE to make Code::Blocks not show suggestions from other open source files.

3

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.