mirror of
https://github.com/KDE/konsole.git
synced 2025-12-25 08:18:11 -05:00
Respect Trim Trailing Space also in history buffer
The TrimTrailingSpacesInSelectedText profile option was not being respected when selecting text in the history buffer.
This commit is contained in:
committed by
Tomaz Canabrava
parent
9b364450f0
commit
4e69f47b06
@@ -1622,9 +1622,7 @@ int Screen::copyLineToStream(int line,
|
||||
// ensure that start position is before end of line
|
||||
start = qBound(0, start, lineLength - 1);
|
||||
|
||||
// retrieve line from history buffer. It is assumed
|
||||
// that the history buffer does not store trailing white space
|
||||
// at the end of the line, so it does not need to be trimmed here
|
||||
// retrieve line from history buffer
|
||||
if (count == -1) {
|
||||
count = lineLength - start;
|
||||
} else {
|
||||
@@ -1640,6 +1638,13 @@ int Screen::copyLineToStream(int line,
|
||||
|
||||
if (_history->isWrappedLine(line)) {
|
||||
currentLineProperties |= LINE_WRAPPED;
|
||||
} else {
|
||||
if (options.testFlag(TrimTrailingWhitespace)) {
|
||||
// ignore trailing white space at the end of the line
|
||||
while (count > 0 && QChar(characterBuffer[start + count - 1].character).isSpace()) {
|
||||
count--;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (count == -1) {
|
||||
|
||||
Reference in New Issue
Block a user