mirror of https://gitlab.com/basile.b/dexed.git
highlighter, use c/c++ syntax for cxx files
This commit is contained in:
parent
f90d246933
commit
170743116e
|
@ -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
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue