[Keymap] Update personal userspace and keymaps (#4963)
* Remove duplicated or unnecessary definitions in config.h and rules.mk * Use IS_HOST_LED_ON() macro * Add mouse acceleration to kbd6x:konstantin keymap * Clear and restore mods when sending macros * Make SEND_STRING_CLEAN a config option * Add NO_ACTION_ONESHOT to userspace config
This commit is contained in:
parent
5c1d4baec4
commit
6ba0b818e9
7 changed files with 17 additions and 26 deletions
|
@ -3,8 +3,9 @@
|
|||
#ifdef LAYER_NUMPAD
|
||||
static void toggle_numpad(void) {
|
||||
layer_invert(L_NUMPAD);
|
||||
bool num_lock = host_keyboard_leds() & 1<<USB_LED_NUM_LOCK;
|
||||
if (num_lock != (bool)IS_LAYER_ON(L_NUMPAD)) {
|
||||
bool numpad_on = IS_LAYER_ON(L_NUMPAD);
|
||||
bool num_lock_on = IS_HOST_LED_ON(USB_LED_NUM_LOCK);
|
||||
if (num_lock_on != numpad_on) {
|
||||
tap_code(KC_NLCK); // Toggle Num Lock to match layer state
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue