dragonation / wechat-devtools

Wechat Dev Tools on Linux GNOME
MIT License
193 stars 25 forks source link

选中文本自动复制到了剪切板 #2

Closed looyeagee closed 4 years ago

looyeagee commented 4 years ago

为啥我选择任何文本都会复制到剪切板呢?

dragonation commented 4 years ago

测试了一下,的确有这个问题,晚上我看一下具体是什么情况,因为平时只用开发者工具来调试,不开编辑器的,所以一直没有注意,如果有发现如何解决,后续会更新

dragonation commented 4 years ago
// Controls whether the Linux primary clipboard should be supported.
"editor.selectionClipboard": true

我看了一下,新版开发者工具使用了vscode的编辑器,里面默认有一个选项是在linux下自动复制选中内容的配置,你可以考虑一下禁用掉就可以了

dragonation commented 4 years ago

测试了一下,配置完了以后就对了 也另外写了一个工具来解决这个问题,可以通过执行tools目录下的fix-selection-copy命令来自动完成这个配置更改

looyeagee commented 4 years ago

感谢!