更改薄荷键盘快捷键

时间:2018-09-01 11:13:59

标签: msys2 mintty

MSYS2的

mintty 2.8.5使用 Shift + Insert 进行粘贴。但是在我的笔记本电脑上, Insert btn不能与 Delete 键结合使用,也就是说,要真正粘贴薄荷味,我需要按 Shift + Fn + Delete ,这很烦人。

是否可以将薄荷糊op绑定到 Shift + Delete

1 个答案:

答案 0 :(得分:0)

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

的补丁
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)

我已经用https://github.com/mintty/mintty的rev 0e65eec39进行了测试