From ac1bde29aa9c569936d11ab564ab6bd0f89db1ef Mon Sep 17 00:00:00 2001 From: George White Date: Sun, 4 Jul 2021 18:09:24 +0100 Subject: [PATCH] Add .ixx as a possible C++ extension This extension is used for a C++ module interface file, required for it to be automatically compiled as a module in Visual Studio (as seen [here](https://docs.microsoft.com/en-us/cpp/cpp/modules-cpp?view=msvc-160#basic-example)). Therefore, files with this extension should be highlighted as C++. --- extensions/cpp/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/extensions/cpp/package.json b/extensions/cpp/package.json index 78eb36d7e82..0e12733535f 100644 --- a/extensions/cpp/package.json +++ b/extensions/cpp/package.json @@ -41,6 +41,7 @@ ".ino", ".inl", ".ipp", + ".ixx", ".hpp.in", ".h.in" ],