如何禁用 Code::Blocks 中其他开源文件的代码完成建议?

问题描述 投票:0回答:1

Code::Blocks 始终显示其他开源文件的建议。例如,如果我在另一个文件中编写了一个函数 func,参数形式为 func(int a, char ch),当我在另一个文件中键入 func 时,Code::Blocks 会自动建议 func(int a, char ch)。

#include<iostream>
using namespace std;

int func(int a,char c)
{
    return 1;
}
int main()
{
    
    return 0;
}

在此输入图片描述

如何配置 IDE 以使 Code::Blocks 不显示其他开源文件的建议。

ide codeblocks environment
1个回答
0
投票

转到菜单

Plugins -> Manage plugins...
,然后选择“代码完成”插件并将其禁用 enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.