Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 400 Bytes

NOTES.md

File metadata and controls

11 lines (8 loc) · 400 Bytes

Notes

VSCode recognize files with no suffix as C++

Files with no extension aren't recognized as C++ by default. To fix this add the following to .vscode/settings.json in the repository root:

"files.associations": {
  "**/include/erl/{[!.],[!.][!.],[!.][!.][!.],[!.][!.][!.][!.],[!.][!.][!.][!.][!.]}{[],[!.],[!.][!.][!.][!.][!.],[!.][!.][!.][!.][!.][!.][!.][!.][!.][!.]}": "cpp"
}