Updated FAQ Keymap (markdown)

This commit is contained in:
tmk 2015-12-09 12:04:14 +09:00
parent 4e9170156e
commit bf88dfa5db
1 changed files with 6 additions and 6 deletions

View File

@ -234,15 +234,15 @@ weak_mods retains state of virtual or temprary modifiers which should not affect
Let's say you hold down physical left shift key and type ACTION_MODS_KEY(LSHIFT, KC_A), Let's say you hold down physical left shift key and type ACTION_MODS_KEY(LSHIFT, KC_A),
with weak_mods, with weak_mods,
(1) hold down left shift: real_mods |= MOD_BIT(LSHIFT) * (1) hold down left shift: real_mods |= MOD_BIT(LSHIFT)
(2) press ACTION_MODS_KEY(LSHIFT, KC_A): weak_mods |= MOD_BIT(LSHIFT) * (2) press ACTION_MODS_KEY(LSHIFT, KC_A): weak_mods |= MOD_BIT(LSHIFT)
(3) release ACTION_MODS_KEY(LSHIFT, KC_A): waek_mods &= ~MOD_BIT(LSHIFT) * (3) release ACTION_MODS_KEY(LSHIFT, KC_A): waek_mods &= ~MOD_BIT(LSHIFT)
real_mods still keeps modifier state. real_mods still keeps modifier state.
without weak mods, without weak mods,
(1) hold down left shift: real_mods |= MOD_BIT(LSHIFT) * (1) hold down left shift: real_mods |= MOD_BIT(LSHIFT)
(2) press ACTION_MODS_KEY(LSHIFT, KC_A): real_mods |= MOD_BIT(LSHIFT) * (2) press ACTION_MODS_KEY(LSHIFT, KC_A): real_mods |= MOD_BIT(LSHIFT)
(3) release ACTION_MODS_KEY(LSHIFT, KC_A): real_mods &= ~MOD_BIT(LSHIFT) * (3) release ACTION_MODS_KEY(LSHIFT, KC_A): real_mods &= ~MOD_BIT(LSHIFT)
here real_mods lost state for 'physical left shift'. here real_mods lost state for 'physical left shift'.
weak_mods is ORed with real_mods when keyboard report is sent. weak_mods is ORed with real_mods when keyboard report is sent.