From bb7f824ced78c835c3b40b34175872c1626bd7dd Mon Sep 17 00:00:00 2001 From: Florian Didron Date: Thu, 22 Dec 2022 14:36:19 +0900 Subject: fix: restore the no autoshift tab flag (#364) --- quantum/process_keycode/process_auto_shift.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/quantum/process_keycode/process_auto_shift.h b/quantum/process_keycode/process_auto_shift.h index 86adb04985..3df4048678 100644 --- a/quantum/process_keycode/process_auto_shift.h +++ b/quantum/process_keycode/process_auto_shift.h @@ -29,10 +29,16 @@ // clang-format off #define AUTO_SHIFT_ALPHA KC_A ... KC_Z #define AUTO_SHIFT_NUMERIC KC_1 ... KC_0 +#ifdef NO_AUTO_SHIFT_TAB +#define AUTO_SHIFT_SPECIAL \ + KC_MINUS ... KC_SLASH: \ + case KC_NONUS_BSLASH +#else #define AUTO_SHIFT_SPECIAL \ KC_TAB: \ case KC_MINUS ... KC_SLASH: \ - case KC_NONUS_BACKSLASH + case KC_NONUS_BSLASH +#endif // clang-format on bool process_auto_shift(uint16_t keycode, keyrecord_t *record); -- cgit v1.2.3