2019-09-25 18:21:07 +02:00
|
|
|
#include "quantum.h"
|
|
|
|
#include "dshields.h"
|
2019-09-21 20:04:27 +02:00
|
|
|
|
|
|
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
2021-02-28 07:07:55 +01:00
|
|
|
if ((keycode >= QK_MOD_TAP && keycode <= QK_MOD_TAP_MAX)
|
|
|
|
|| (keycode >= QK_LAYER_TAP && keycode <= QK_LAYER_TAP_MAX)
|
|
|
|
|| (keycode >= QK_MODS && keycode <= QK_MODS_MAX)) {
|
|
|
|
keycode = keycode & 0xFF;
|
|
|
|
}
|
2019-09-25 18:21:07 +02:00
|
|
|
if (keycode == KC_ESC && record->event.pressed) {
|
|
|
|
bool rc = true;
|
|
|
|
uint8_t mods = 0;
|
|
|
|
if ((mods = get_oneshot_mods()) && !has_oneshot_mods_timed_out()) {
|
|
|
|
clear_oneshot_mods();
|
|
|
|
unregister_mods(mods);
|
|
|
|
rc = false;
|
|
|
|
}
|
|
|
|
if ((mods = get_oneshot_locked_mods())) {
|
|
|
|
clear_oneshot_locked_mods();
|
|
|
|
unregister_mods(mods);
|
|
|
|
rc = false;
|
|
|
|
}
|
|
|
|
if (is_oneshot_layer_active()) {
|
|
|
|
layer_clear();
|
|
|
|
rc = false;
|
|
|
|
}
|
|
|
|
return rc;
|
2019-09-21 20:04:27 +02:00
|
|
|
}
|
2019-09-25 18:21:07 +02:00
|
|
|
return true;
|
2019-09-21 20:04:27 +02:00
|
|
|
}
|
|
|
|
|