Added Arduino syntax highlighting support alongside C++. (#1767)

This commit is contained in:
PerilousBooklet 2024-04-13 10:54:31 +02:00 committed by George Sokianos
parent be84a85dc9
commit eee6bc24d0
1 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,8 @@ syntax.add {
name = "C++",
files = {
"%.h$", "%.inl$", "%.cpp$", "%.cc$", "%.C$", "%.cxx$",
"%.c++$", "%.hh$", "%.H$", "%.hxx$", "%.hpp$", "%.h++$"
"%.c++$", "%.hh$", "%.H$", "%.hxx$", "%.hpp$", "%.h++$",
"%.ino$"
},
comment = "//",
block_comment = { "/*", "*/" },