A feature that QTerminal is missing, which is present in gnome-terminal, is the ability to configure which characters are considered "word" characters for the purposes of double-click selection. (Feature request)
QTermWidget has internal support for configuring those characters, inherited from Konsole, but its public API provides no way to do so. This PR adds wordCharacters() const and setWordCharacters() to QTermWidget in order to support this feature.
A feature that QTerminal is missing, which is present in gnome-terminal, is the ability to configure which characters are considered "word" characters for the purposes of double-click selection. (Feature request)
QTermWidget has internal support for configuring those characters, inherited from Konsole, but its public API provides no way to do so. This PR adds
wordCharacters() const
andsetWordCharacters()
to QTermWidget in order to support this feature.