We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
确实,希望能增加
Sorry, something went wrong.
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)即可
若是还想要ctrl + enter换行的功能,就在楼上提到的文件中 加入 if (event.ctrlKey && event.keyCode === 13) { document.getElementById("content").value = document.getElementById("content").value + '\n'; } 即可
No branches or pull requests
强制Ctrl+Enter发送确实不习惯...
The text was updated successfully, but these errors were encountered: