mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 13:31:49 +00:00
FindAdv: Enable search for different languages in Korean documents too
The problem here was that for european languages only the encoding was visible in latex output. Now also the language is provided.
This commit is contained in:
parent
7822d11361
commit
17ee4cafb1
@ -1516,6 +1516,19 @@ void LatexInfo::buildEntries(bool isPatternString)
|
||||
found._tokenstart = pos - count;
|
||||
if (sub.str(1).compare(0, 5, "begin") == 0) {
|
||||
size_t pos1 = pos + sub.str(0).length();
|
||||
if (sub.str(5).compare("cjk") == 0) {
|
||||
pos1 = interval.findclosing(pos1+1, interval.par.length()) + 1;
|
||||
if ((interval.par[pos1] == '{') && (interval.par[pos1+1] == '}'))
|
||||
pos1 += 2;
|
||||
found.keytype = KeyInfo::isMain;
|
||||
found._dataStart = pos1;
|
||||
found._dataEnd = interval.par.length();
|
||||
found.disabled = keys["foreignlanguage"].disabled;
|
||||
found.used = keys["foreignlanguage"].used;
|
||||
found._tokensize = pos1 - found._tokenstart;
|
||||
found.head = interval.par.substr(found._tokenstart, found._tokensize);
|
||||
}
|
||||
else {
|
||||
if (interval.par[pos1] == '[') {
|
||||
pos1 = interval.findclosing(pos1+1, interval.par.length(), '[', ']')+1;
|
||||
}
|
||||
@ -1526,16 +1539,21 @@ void LatexInfo::buildEntries(bool isPatternString)
|
||||
found._dataEnd = pos1;
|
||||
}
|
||||
found._dataStart = found._dataEnd;
|
||||
}
|
||||
else {
|
||||
found._dataStart = pos + sub.str(0).length();
|
||||
found._dataEnd = found._dataStart;
|
||||
}
|
||||
found._tokensize = count + found._dataEnd - pos;
|
||||
found.parenthesiscount = 0;
|
||||
found.disabled = true;
|
||||
}
|
||||
}
|
||||
else {
|
||||
// Handle "\end{...}"
|
||||
found._dataStart = pos + sub.str(0).length();
|
||||
found._dataEnd = found._dataStart;
|
||||
found._tokensize = count + found._dataEnd - pos;
|
||||
found.parenthesiscount = 0;
|
||||
found.disabled = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (found.keytype != KeyInfo::isRegex) {
|
||||
found._tokenstart = sub.position(size_t(0));
|
||||
if (found.parenthesiscount == 0) {
|
||||
@ -1631,7 +1649,7 @@ void LatexInfo::buildKeys(bool isPatternString)
|
||||
// No split
|
||||
makeKey("backslash|textbackslash|textasciicircum|textasciitilde|ldots", KeyInfo(KeyInfo::isChar, 1, false), isPatternString);
|
||||
// Found in fr/UserGuide.lyx
|
||||
makeKey("og|fg|textvisiblespace", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
|
||||
makeKey("og|fg|textvisiblespace|lyx", KeyInfo(KeyInfo::isChar, 0, false), isPatternString);
|
||||
|
||||
// Known macros to remove (including their parameter)
|
||||
// No split
|
||||
|
@ -941,7 +941,7 @@ void TeXOnePar(Buffer const & buf,
|
||||
os << "\\L{";
|
||||
}
|
||||
// With CJK, the CJK tag has to be closed first (see below)
|
||||
if (runparams.encoding->package() != Encoding::CJK
|
||||
if ((runparams.encoding->package() != Encoding::CJK || runparams.for_search)
|
||||
&& (par_lang != openLanguageName(state) || localswitch)
|
||||
&& !par_lang.empty()) {
|
||||
string bc = use_polyglossia ?
|
||||
@ -1165,7 +1165,7 @@ void TeXOnePar(Buffer const & buf,
|
||||
os << '\n';
|
||||
|
||||
// when the paragraph uses CJK, the language has to be closed earlier
|
||||
if (font.language()->encoding()->package() != Encoding::CJK) {
|
||||
if ((font.language()->encoding()->package() != Encoding::CJK) || runparams_in.for_search) {
|
||||
if (lang_end_command.empty()) {
|
||||
// If this is a child, we should restore the
|
||||
// master language after the last paragraph.
|
||||
|
Loading…
Reference in New Issue
Block a user