vscode配置cpp补全提示

使用第三方库时,vscode不会补全,该情况添加第三方库的路径到includePath即可。

首先,shirt+ctrl+p(Linux下ctrl+p)调出控制窗口, 输入> edit Configurations,选择C/Cpp:Edit Configurations
控制窗口图

然后,会在工作空间生成./.vscode/c_cpp_properties.json文件,配置该文件中的”includePath”参数,如:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/opt/grpc/include"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++14",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}

最后,配置完成后,最好重启客户端。