최근 자동완성 및 포매팅 적용안됨 및 여러 세팅이 스파게티가 되어버린 바람에,
아예 VS Code 를 초기화하고 삭제한 뒤 다시 깔아서 세팅을 처음부터 하고 있다.
변동사항 유지를 위한 타래를 만들까 한다.
아래와같이 c_cpp_properties 항목에 /usr/local/include 를 넣어주면 된다.
하위디렉토리에 bits/stdc++ 를 넣어주면 더욱 편하다.
효과없었음을 확인했고, 다음 포스트에서 해결했다.
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${default}",
"${workspaceFolder}/**",
"/Library/Developer/CommandLineTools/usr/include/**"
],
"defines": [],
"macFrameworkPath": [
"/System/Library/Frameworks",
"/Library/Frameworks"
],
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "macos-gcc-x64"
}
],
"version": 4
}