vscode-qq icon indicating copy to clipboard operation
vscode-qq copied to clipboard

希望能选择发送消息是 Enter 还是 Ctrl+Enter 触发

Open teatube opened this issue 2 years ago • 3 comments

强制Ctrl+Enter发送确实不习惯...

teatube avatar Apr 29 '22 01:04 teatube

确实,希望能增加

Lin6b avatar May 18 '22 11:05 Lin6b

C:\Users\Administrator.vscode\extensions\takayama.vscode-qq-1.4.2\assets\default-theme\app.js 查看if (event.ctrlKey && event.keyCode === 13),修改为if (event.keyCode === 13)即可

jzj083271930 avatar Jul 20 '22 10:07 jzj083271930

若是还想要ctrl + enter换行的功能,就在楼上提到的文件中 加入
if (event.ctrlKey && event.keyCode === 13) { document.getElementById("content").value = document.getElementById("content").value + '\n'; } 即可

238Ver avatar Aug 20 '22 03:08 238Ver