highlighter, use c/c++ syntax for cxx files

This commit is contained in:
Basile Burg 2022-06-06 21:01:21 +02:00
parent f90d246933
commit 170743116e
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@
- Completion, option `autoCallCompletion` did not work when using `textCompletion` in non-D sources.
- Completion, does not allow `autoCallCompletion` when key modifiers are used, e.g <key>CTRL</key>+<key>Z</key>.
- C/C++ highlighter was not set for _*.cxx_ files
# v3.9.18

View File

@ -1350,7 +1350,7 @@ function hasCppSyntax(const ext: string): boolean;
begin
result := false;
case ext of
'.c', '.h', '.cc', '.cpp', '.hpp': result := true;
'.c', '.h', '.cc', '.cpp', '.hpp', '.cxx' : result := true;
end;
end;