fix #470 - "Find all" results are not clickable if the file is a C/C++ source

This commit is contained in:
Basile Burg 2019-05-09 00:49:36 +02:00
parent 9f71934663
commit 67cd6e9eb4
1 changed files with 2 additions and 0 deletions

View File

@ -1307,6 +1307,8 @@ begin
result := false;
case ext of
'.d', '.di', '.dd', '.lst', '.md', '.txt', '.map' , '.sx': result := true;
else if hasCppSyntax(ext) then
result := true;
end;
end;