From f6d49ca9fcd980141a7e2d2b75e39e0aaf434fa0 Mon Sep 17 00:00:00 2001 From: Ilya Zhuravlev Date: Fri, 16 Oct 2020 06:22:04 -0400 Subject: [PATCH] Add remaining ISO/JIS keycodes --- src/main/python/keycodes.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/python/keycodes.py b/src/main/python/keycodes.py index 22a33a3..004594f 100644 --- a/src/main/python/keycodes.py +++ b/src/main/python/keycodes.py @@ -189,6 +189,13 @@ KEYCODES_BASIC = [ KEYCODES_ISO = [ K(0x32, "KC_NONUS_HASH", "~\n#", "Non-US # and ~"), K(0x64, "KC_NONUS_BSLASH", "|\n\\", "Non-US \\ and |"), + K(0x87, "KC_RO", "_\n\\", "JIS \\ and _"), + K(0x88, "KC_KANA", "カタカナ\nひらがな", "JIS Katakana/Hiragana"), + K(0x89, "KC_JYEN", "|\n¥"), + K(0x8A, "KC_HENK", "変換", "JIS Henkan"), + K(0x8B, "KC_MHEN", "無変換", "JIS Muhenkan"), + K(0x90, "KC_LANG1", "한영\nかな", "Korean Han/Yeong / JP Mac Kana"), + K(0x91, "KC_LANG2", "漢字\n英数", "Korean Hanja / JP Mac Eisu"), ] KEYCODES_MACRO = []