mirror of https://gitlab.com/basile.b/dexed.git
fix #464 - searching multiline regexes does not work
This commit is contained in:
parent
03a33c2137
commit
779edd9fe5
|
@ -309,7 +309,7 @@ function TSearchWidget.getOptions: TSynSearchOptions;
|
|||
begin
|
||||
result := [];
|
||||
if chkRegex.Checked then
|
||||
result += [ssoRegExpr];
|
||||
result += [ssoRegExpr, ssoRegExprMultiLine];
|
||||
if chkWWord.Checked then
|
||||
result += [ssoWholeWord];
|
||||
if chkBack.Checked then
|
||||
|
@ -468,6 +468,7 @@ begin
|
|||
search.Sensitive := ssoMatchCase in options;
|
||||
search.Whole := ssoWholeWord in options;
|
||||
search.RegularExpressions:= ssoRegExpr in options;
|
||||
search.RegExprMultiLine:=ssoRegExpr in options;
|
||||
search.Pattern:=fToFind;
|
||||
if (fFindScope = scSel) and fDoc.SelAvail then
|
||||
begin
|
||||
|
|
Loading…
Reference in New Issue