更改薄荷色键盘快捷键



mintty 2.8.5 for MSYS2使用Shift+Insert进行粘贴。但是在我的笔记本电脑上,插入btn删除键不愉快地结合在一起,即要实际粘贴薄荷,我需要按Shift+Fn + Delete,这很烦人。

是否可以将薄荷酱操作绑定到Shift+Delete

我能想到的唯一方法是使用类似于

diff --git a/src/wininput.c b/src/wininput.c
index 20f2f3e..0f2958c 100644
--- a/src/wininput.c
+++ b/src/wininput.c
@@ -2033,7 +2033,8 @@ win_key_down(WPARAM wp, LPARAM lp)
goto skip_shortcuts;
// Copy&paste
-    if (cfg.clip_shortcuts && key == VK_INSERT && mods && !alt) {
+    if (cfg.clip_shortcuts && (key == VK_INSERT || key == VK_DELETE)
+        && mods && !alt) {
if (ctrl)
term_copy();
if (shift)

我已经用 0e65eec39 的修订版对其进行了测试 https://github.com/mintty/mintty

相关内容

  • 没有找到相关文章