From 8d7e538176e25ea272520ce9e3271357cd041762 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Sun, 9 Jul 2017 02:14:48 +0200 Subject: [PATCH] Map the Q key of the Mod layer to Esc according to our official keymap. --- right/src/current_keymap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/right/src/current_keymap.c b/right/src/current_keymap.c index 0e0861b..95f1396 100644 --- a/right/src/current_keymap.c +++ b/right/src/current_keymap.c @@ -165,7 +165,7 @@ key_action_t CurrentKeymap[LAYER_COUNT][SLOT_COUNT][MAX_KEY_COUNT_PER_MODULE] = // Row 2 { .type = KeyActionType_None }, - { .type = KeyActionType_None }, + { .type = KeyActionType_Keystroke, .keystroke = { .scancode = HID_KEYBOARD_SC_ESCAPE }}, { .type = KeyActionType_Keystroke, .keystroke = { .scancode = HID_KEYBOARD_SC_PAGE_UP, .modifiers = HID_KEYBOARD_MODIFIER_LEFTCTRL }}, // [<] tab prev { .type = KeyActionType_Keystroke, .keystroke = { .scancode = HID_KEYBOARD_SC_T, .modifiers = HID_KEYBOARD_MODIFIER_LEFTCTRL }}, // [+] tab new { .type = KeyActionType_Keystroke, .keystroke = { .scancode = HID_KEYBOARD_SC_PAGE_DOWN, .modifiers = HID_KEYBOARD_MODIFIER_LEFTCTRL }}, // [>] tab next