From 067894a61a63e25f11bc14ff8020929986aa44e6 Mon Sep 17 00:00:00 2001 From: Ilya Zhuravlev Date: Sat, 17 Oct 2020 14:49:48 -0400 Subject: [PATCH] keycodes: no need for special "&" handling anymore --- src/main/python/keycodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/python/keycodes.py b/src/main/python/keycodes.py index ccd8ac3..d3187d2 100644 --- a/src/main/python/keycodes.py +++ b/src/main/python/keycodes.py @@ -48,7 +48,7 @@ KEYCODES_BASIC = [ K(0x21, "KC_4", "$\n4"), K(0x22, "KC_5", "%\n5"), K(0x23, "KC_6", "^\n6"), - K(0x24, "KC_7", "&&\n7"), + K(0x24, "KC_7", "&\n7"), K(0x25, "KC_8", "*\n8"), K(0x26, "KC_9", "(\n9"), K(0x27, "KC_0", ")\n0"),