mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
fix syntaxhihtlight
This commit is contained in:
parent
05177da97b
commit
1b7a8b4cf0
@ -61,7 +61,7 @@ VerilogA_File_Info::VerilogA_File_Info (QString File, bool isfile)
|
||||
File.remove(i, j-i+2);
|
||||
}
|
||||
|
||||
QRegularExpression Expr,Expr1;
|
||||
QRegularExpression Expr;//,Expr1;
|
||||
//Expr.setPatternOptions(QRegularExpression::CaseInsensitiveOption);
|
||||
//Expr1.setPatternOptions(Qt::CaseSensitive);
|
||||
k--;
|
||||
|
@ -180,11 +180,8 @@ void CustomSimDialog::slotFindOutputs()
|
||||
QStringList outps;
|
||||
QStringList strings = edtCode->toPlainText().split('\n');
|
||||
if (isXyceScr) {
|
||||
QRegularExpression print_ex("^\\s*\\.print\\s.*");
|
||||
print_ex.setPatternOptions(QRegularExpression::CaseInsensitiveOption);
|
||||
QRegularExpression file_ex("\\s*file\\s*=\\s*");
|
||||
file_ex.setPatternOptions(QRegularExpression::CaseInsensitiveOption);
|
||||
|
||||
QRegularExpression print_ex("^\\s*\\.print\\s.*", QRegularExpression::CaseInsensitiveOption);
|
||||
QRegularExpression file_ex("\\s*file\\s*=\\s*", QRegularExpression::CaseInsensitiveOption);
|
||||
for (const QString& line : strings) {
|
||||
if (print_ex.match(line).hasMatch()) {
|
||||
//file_ex.setCaseSensitivity(Qt::CaseInsensitive);
|
||||
|
@ -249,11 +249,9 @@ void SyntaxHighlighter::highlightBlock(const QString &text) {
|
||||
for (const HighlightingRule &rule : highlightingRules) {
|
||||
QRegularExpression expression(rule.pattern);
|
||||
QRegularExpressionMatch match = expression.match(text);
|
||||
//int index = expression.indexIn(text);
|
||||
while (match.hasMatch()) {
|
||||
for (const QRegularExpressionMatch &match : expression.globalMatch(text)) {
|
||||
int length = match.capturedLength();
|
||||
setFormat(match.capturedStart(), length, rule.format);
|
||||
//index = expression.indexIn(text, index + length);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user