Home
last modified time | relevance | path

Searched refs:startOfWordPattern (Results 1 – 1 of 1) sorted by relevance

/dports/devel/kf5-ktexteditor/ktexteditor-5.89.0/src/vimode/modes/
H A Dmodebase.cpp181 QString startOfWordPattern = QStringLiteral("\\b(\\w"); in findNextWordStart() local
183 startOfWordPattern.append(QLatin1String("|[") + m_extraWordCharacters + QLatin1Char(']')); in findNextWordStart()
185 startOfWordPattern.append(QLatin1Char(')')); in findNextWordStart()
187 …const QRegularExpression startOfWord(startOfWordPattern, QRegularExpression::UseUnicodePropertiesO… in findNextWordStart()
361 QString startOfWordPattern = QStringLiteral("\\b(\\w"); in findPrevWordStart() local
363 startOfWordPattern.append(QLatin1String("|[") + m_extraWordCharacters + QLatin1Char(']')); in findPrevWordStart()
365 startOfWordPattern.append(QLatin1Char(')')); in findPrevWordStart()
367 …const QRegularExpression startOfWord(startOfWordPattern, QRegularExpression::UseUnicodePropertiesO… in findPrevWordStart()