mirror of
https://github.com/KDE/konsole.git
synced 2026-06-11 23:45:09 -04:00
Add support for copying HTML formatted text from terminal
Currently, only text is supported - this add HTML Thanks to Anonymous Koavohv koavohv gmail com REVIEW: 119914
This commit is contained in:
@@ -120,9 +120,9 @@ QVector<LineProperty> ScreenWindow::getLineProperties()
|
||||
return result;
|
||||
}
|
||||
|
||||
QString ScreenWindow::selectedText(bool preserveLineBreaks, bool trimTrailingSpaces) const
|
||||
QString ScreenWindow::selectedText(bool preserveLineBreaks, bool trimTrailingSpaces, bool html) const
|
||||
{
|
||||
return _screen->selectedText(preserveLineBreaks, trimTrailingSpaces);
|
||||
return _screen->selectedText(preserveLineBreaks, trimTrailingSpaces, html);
|
||||
}
|
||||
|
||||
void ScreenWindow::getSelectionStart(int& column , int& line)
|
||||
|
||||
Reference in New Issue
Block a user