diff --git a/Extension/package.json b/Extension/package.json index f183a39f5c..6a0637f6c9 100644 --- a/Extension/package.json +++ b/Extension/package.json @@ -60,6 +60,42 @@ ], "main": "./dist/src/main", "contributes": { + "languages": [ + { + "id": "c", + "aliases": [ + "C" + ], + "extensions": [ + ".c", + ".h" + ] + }, + { + "id": "cpp", + "aliases": [ + "C++" + ], + "extensions": [ + ".cpp", + ".cc", + ".cxx", + ".hpp", + ".hh", + ".hxx" + ] + }, + { + "id": "cuda-cpp", + "aliases": [ + "CUDA" + ], + "extensions": [ + ".cu", + ".cuh" + ] + } + ], "walkthroughs": [ { "id": "cppWelcome",