Ubuntu 18.10 gnome terminal 3.30.1
In gnome terminal when I double click on below word background it only makes sense it should highlight only the word background
background=true
however it highlights background=true
other distros' terminal allows you to edit the set of chars to define a word boundary
I issue this to find my UUID
sudo dconf list /org/gnome/terminal/legacy/profiles:/
which shows
:b1dcc9dd-5262-4d8d-a863-c897e6d979b9/
to view available attributes I issue
sudo dconf dump /org/gnome/terminal/legacy/profiles:/
output :
[:b1dcc9dd-5262-4d8d-a863-c897e6d979b9]
default-size-rows=42
default-size-columns=142
use-transparent-background=true
use-theme-colors=false
use-theme-transparency=false
scrollback-unlimited=true
background-color='rgb(28,30,31)'
background-transparency-percent=3
audible-bell=false
below used to work in previous ubuntu releases to define attribute word-char-exceptions
sudo dconf write /org/gnome/terminal/legacy/profiles:/:b1dcc9dd-5262-4d8d-a863-c897e6d979b9/word-char-exceptions '@ms "-#%&+,./:=?@_~"'
none of the answers here work on 18.10 Can I specify what characters set the double-click selection boundary in GNOME Terminal?
UPDATE here is what works
gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:b1dcc9dd-5262-4d8d-a863-c897e6d979b9/ word-char-exceptions '@ms "-,.?%&#_+@~·/"'
just replace b1dcc9dd-5262-4d8d-a863-c897e6d979b9 with your own UUID value



