mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
FindAdv: Do not handle stale empty latex commands if not in format-search mode
In non-format-search mode, we do not have any latex commands here.
This commit is contained in:
parent
115d6ceedd
commit
f845a4e9a3
@ -4093,16 +4093,18 @@ string MatchStringAdv::normalize(docstring const & s, bool ignore_format) const
|
|||||||
{
|
{
|
||||||
string t = convertLF2Space(s, ignore_format);
|
string t = convertLF2Space(s, ignore_format);
|
||||||
|
|
||||||
// Remove stale empty \emph{}, \textbf{} and similar blocks from latexify
|
// The following replaces are not appropriate in non-format-search mode
|
||||||
// Kornel: Added textsl, textsf, textit, texttt and noun
|
if (!ignore_format) {
|
||||||
// + allow to seach for colored text too
|
// Remove stale empty \emph{}, \textbf{} and similar blocks from latexify
|
||||||
LYXERR(Debug::FINDVERBOSE, "Removing stale empty macros from: " << t);
|
// Kornel: Added textsl, textsf, textit, texttt and noun
|
||||||
while (regex_replace(t, t, "\\\\(emph|noun|text(bf|sl|sf|it|tt)|(u|uu)line|(s|x)out|uwave)(\\{(\\{\\})?\\})+", ""))
|
// + allow to seach for colored text too
|
||||||
LYXERR(Debug::FINDVERBOSE, " further removing stale empty \\emph{}, \\textbf{} macros from: " << t);
|
LYXERR(Debug::FINDVERBOSE, "Removing stale empty macros from: " << t);
|
||||||
while (regex_replace(t, t, "\\\\((sub)?(((sub)?section)|paragraph)|part)\\*?(\\{(\\{\\})?\\})+", ""))
|
while (regex_replace(t, t, "\\\\(emph|noun|text(bf|sl|sf|it|tt)|(u|uu)line|(s|x)out|uwave)(\\{(\\{\\})?\\})+", ""))
|
||||||
LYXERR(Debug::FINDVERBOSE, " further removing stale empty \\section{}, \\part{}, \\paragraph{} macros from: " << t);
|
LYXERR(Debug::FINDVERBOSE, " further removing stale empty \\emph{}, \\textbf{} macros from: " << t);
|
||||||
while (regex_replace(t, t, "\\\\(foreignlanguage|textcolor|item)\\{[a-z]+\\}(\\{(\\{\\})?\\})+", ""));
|
while (regex_replace(t, t, "\\\\((sub)?(((sub)?section)|paragraph)|part)\\*?(\\{(\\{\\})?\\})+", ""))
|
||||||
|
LYXERR(Debug::FINDVERBOSE, " further removing stale empty \\section{}, \\part{}, \\paragraph{} macros from: " << t);
|
||||||
|
while (regex_replace(t, t, "\\\\(foreignlanguage|textcolor|item)\\{[a-z]+\\}(\\{(\\{\\})?\\})+", ""));
|
||||||
|
}
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user