aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/git/githighlighters.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/git/githighlighters.cpp')
-rw-r--r--src/plugins/git/githighlighters.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/plugins/git/githighlighters.cpp b/src/plugins/git/githighlighters.cpp
index fbc72dae950..890821c745f 100644
--- a/src/plugins/git/githighlighters.cpp
+++ b/src/plugins/git/githighlighters.cpp
@@ -137,23 +137,23 @@ void GitRebaseHighlighter::highlightBlock(const QString &text)
setFormat(changeIndex, changeLen, formatForCategory(Format_Change));
changeIndex += changeLen;
}
- return;
- }
-
- for (const RebaseAction &action : Utils::asConst(m_actions)) {
- if (action.exp.indexIn(text) != -1) {
- const int len = action.exp.matchedLength();
- setFormat(0, len, formatForCategory(action.formatCategory));
- const int changeIndex = m_changeNumberPattern.indexIn(text, len);
- if (changeIndex != -1) {
- const int changeLen = m_changeNumberPattern.matchedLength();
- const int descStart = changeIndex + changeLen + 1;
- setFormat(changeIndex, changeLen, formatForCategory(Format_Change));
- setFormat(descStart, text.size() - descStart, formatForCategory(Format_Description));
+ } else {
+ for (const RebaseAction &action : Utils::asConst(m_actions)) {
+ if (action.exp.indexIn(text) != -1) {
+ const int len = action.exp.matchedLength();
+ setFormat(0, len, formatForCategory(action.formatCategory));
+ const int changeIndex = m_changeNumberPattern.indexIn(text, len);
+ if (changeIndex != -1) {
+ const int changeLen = m_changeNumberPattern.matchedLength();
+ const int descStart = changeIndex + changeLen + 1;
+ setFormat(changeIndex, changeLen, formatForCategory(Format_Change));
+ setFormat(descStart, text.size() - descStart, formatForCategory(Format_Description));
+ }
+ break;
}
- break;
}
}
+ formatSpaces(text);
}
} // namespace Internal