diff options
author | Pierre Ossman <ossman@cendio.se> | 2022-08-23 09:08:52 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2022-08-23 09:08:52 +0200 |
commit | 0c3623cfd9ecbcfe60bb8584a0e4c10bd48a4378 (patch) | |
tree | 895ff361783726743231bb8a289d59ed911245c8 | |
parent | e15649b83a78f89f57205927022115536d2c1698 (diff) | |
download | keycodemapdb-0c3623cfd9ecbcfe60bb8584a0e4c10bd48a4378.zip keycodemapdb-0c3623cfd9ecbcfe60bb8584a0e4c10bd48a4378.tar.gz keycodemapdb-0c3623cfd9ecbcfe60bb8584a0e4c10bd48a4378.tar.bz2 |
Fix macOS "ISO" key
This is actually the common ISO "102nd" key, found between the left
shift and "Z".
Note that this is still technically wrong, as macOS swaps the key codes
for ANSI_Grave and ISO_Section for ISO layouts. This magic is not
something we can encode here though, so that swapping will have to be
done by the implementations using this data.
-rw-r--r-- | data/keymaps.csv | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/keymaps.csv b/data/keymaps.csv index bfc5ac2..2eee23b 100644 --- a/data/keymaps.csv +++ b/data/keymaps.csv @@ -145,7 +145,7 @@ KEY_KPDOT,83,ANSI_KeypadDecimal,0x41,0x53,0x71,0x71,99,VK_DECIMAL,0x6e,83,83,XK_ KEY_KPDOT,83,ANSI_KeypadDecimal,0x41,0x53,0x71,0x71,99,VK_DECIMAL,0x6e,83,83,XK_KP_Decimal,0xffae,NumpadDecimal,KPDC,kp_decimal,0x32,0x41 ,84,,,0x54,,,,,,,,,,,,,, KEY_ZENKAKUHANKAKU,85,,,0x76,0x5f,,148,,,,,XK_Zenkaku_Hankaku,0xff2a,Lang5,HZTG,,, -KEY_102ND,86,,,0x56,0x61,0x13,100,VK_OEM_102,0xe2,86,86,XK_backslash,0x005c,IntlBackslash,LSGT,less,0x7c, +KEY_102ND,86,ISO_Section,0xa,0x56,0x61,0x13,100,VK_OEM_102,0xe2,86,86,XK_backslash,0x005c,IntlBackslash,LSGT,less,0x7c, KEY_F11,87,F11,0x67,0x57,0x78,0x56,68,VK_F11,0x7a,87,87,XK_F11,0xffc8,F11,FK11,f11,0x09,0x67 KEY_F12,88,F12,0x6f,0x58,0x07,0x5e,69,VK_F12,0x7b,88,88,XK_F12,0xffc9,F12,FK12,f12,0x0b,0x6f KEY_RO,89,JIS_Underscore,0x5e,0x73,0x51,,135,VK_OEM_102,0xe2,0xcb,0x73,XK_underscore,0x005f,IntlRo,AB11,ro,, @@ -248,7 +248,7 @@ KEY_STOPCD,166,,,0xe024,0xe03b,0x98,233,VK_MEDIA_STOP,0xb2,,,,,MediaStop,I174,au KEY_RECORD,167,,,0xe031,,0x9e,,,,,,,,,I175,,, KEY_REWIND,168,,,0xe018,,0x9f,,,,,,,,,I176,,, KEY_PHONE,169,,,0x63,,,,,,,,,,,I177,,, -KEY_ISO,170,ISO_Section,0xa,,,,,,,,,,,,I178,,, +KEY_ISO,170,,,,,,,,,,,,,,I178,,, KEY_CONFIG,171,,,0xe001,,,,,,,,,,,I179,,, KEY_HOMEPAGE,172,,,0xe032,0xe03a,0x97,,VK_BROWSER_HOME,0xac,,,,,BrowserHome,I180,ac_home,, KEY_REFRESH,173,,,0xe067,0xe020,,250,VK_BROWSER_REFRESH,0xa8,,,,,BrowserRefresh,I181,ac_refresh,, |