Skip to content

Instantly share code, notes, and snippets.

@Briancbn
Created June 12, 2023 06:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Briancbn/650235313cac72d7f4e5d78e41e4db79 to your computer and use it in GitHub Desktop.
Save Briancbn/650235313cac72d7f4e5d78e41e4db79 to your computer and use it in GitHub Desktop.
ROS autocompletion for VSCode using compile commands
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c11",
"cppStandard": "c++14",
"intelliSenseMode": "linux-gcc-x64",
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
}
],
"version": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment