From 67cd6e9eb4eb92b5f506d8cce5318cc4f43907ba Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Thu, 9 May 2019 00:49:36 +0200 Subject: [PATCH] fix #470 - "Find all" results are not clickable if the file is a C/C++ source --- src/u_common.pas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/u_common.pas b/src/u_common.pas index 3e51eab5..d7f25003 100644 --- a/src/u_common.pas +++ b/src/u_common.pas @@ -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;