From 131c4e261ec44f5a476910beafba49cfa01ee108 Mon Sep 17 00:00:00 2001 From: Haim Ashkenazi Date: Mon, 11 Nov 2024 13:17:59 +0200 Subject: [PATCH] Allow cmd+w, ctrl+w, etc (from the left side) --- JzWvO/keymap.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/JzWvO/keymap.c b/JzWvO/keymap.c index 60804a47..b0ca377a 100644 --- a/JzWvO/keymap.c +++ b/JzWvO/keymap.c @@ -653,8 +653,10 @@ bool achordion_chord(uint16_t tap_hold_keycode, keyrecord_t* tap_hold_record, uint16_t other_keycode, keyrecord_t* other_record) { - // Override - Remove thumbs from achordion (seems that top thumb is already excluded) + // Remove thumbs from achordion (seems that top thumb is already excluded) if (tap_hold_record->event.key.row % (MATRIX_ROWS / 2) == 5) { return true; } + // Allow same side for ctrl+w, cmd+w, etc + if (other_keycode == KC_W) { return true; } return achordion_opposite_hands(tap_hold_record, other_record); }