GNOME 终端双击分隔符

GNOME 终端双击分隔符

在字符串中,filename1, filename2我想双击filename1,并让它不复制逗号。我尝试按照此说明进行操作邮政,但它对我不起作用。具体来说,我尝试过:

$ pid=$(dconf read /org/gnome/terminal/legacy/profiles:/default | tr -d "'")
$ dconf read /org/gnome/terminal/legacy/profiles:/:$pid/word-char-exceptions                                                                           
@ms '-,.;?%&#_+@~·:='
$ dconf write /org/gnome/terminal/legacy/profiles:/:$pid/word-char-exceptions '@ms "-.%_@~"'                                                           
$ dconf read /org/gnome/terminal/legacy/profiles:/:$pid/word-char-exceptions                                                                           
@ms '-.%_@~'

我究竟做错了什么?我在 Red Hat Enterprise 7.3 上使用 GNOME Terminal 3.14.3。

答案1

此设置仅在 gnome-terminal 3.16 中引入。 3.14 中无法更改单词选择字符。

https://bugzilla.gnome.org/show_bug.cgi?id=730632#c49

相关内容