diff options
author | Chris Heyes | 2023-06-30 21:56:39 +0000 |
---|---|---|
committer | GitHub | 2023-06-30 21:56:39 +0000 |
commit | aec1b997dda74b5cef8d24e5ecd3f94a0fc9f979 (patch) | |
tree | 2859336f67ef78a60690d21f5d164f4e56e6268f | |
parent | 9546e0c0a79eb92d5d8e1dc4489490c9db562070 (diff) |
Add .cppm file type to cpp language configuration (#7492)
-rw-r--r-- | languages.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml index 66f2ca31..0c92df4e 100644 --- a/languages.toml +++ b/languages.toml @@ -342,7 +342,7 @@ source = { git = "https://github.com/tree-sitter/tree-sitter-c", rev = "7175a6dd name = "cpp" scope = "source.cpp" injection-regex = "cpp" -file-types = ["cc", "hh", "c++", "cpp", "hpp", "h", "ipp", "tpp", "cxx", "hxx", "ixx", "txx", "ino", "C", "H", "cu", "cuh"] +file-types = ["cc", "hh", "c++", "cpp", "hpp", "h", "ipp", "tpp", "cxx", "hxx", "ixx", "txx", "ino", "C", "H", "cu", "cuh", "cppm"] roots = [] comment-token = "//" language-servers = [ "clangd" ] |