|
|
|
@ -24,20 +24,22 @@
|
|
|
|
|
namespace kaleidoscope {
|
|
|
|
|
namespace plugin {
|
|
|
|
|
|
|
|
|
|
Key EscapeOneShot::cancel_oneshot_key_{Key_Escape};
|
|
|
|
|
|
|
|
|
|
EventHandlerResult EscapeOneShot::onKeyswitchEvent(
|
|
|
|
|
Key &key, KeyAddr key_addr, uint8_t key_state) {
|
|
|
|
|
// We only act on an escape key that has just been pressed, and not
|
|
|
|
|
// generated by some other plugin. Also, only if at least one
|
|
|
|
|
// OneShot key is active and/or sticky. Last, only if there are no
|
|
|
|
|
// OneShot keys currently being held.
|
|
|
|
|
if (key == Key_Escape &&
|
|
|
|
|
// We only act on an escape key (or `cancel_oneshot_key_`, if that has been
|
|
|
|
|
// set) that has just been pressed, and not generated by some other
|
|
|
|
|
// plugin. Also, only if at least one OneShot key is active and/or
|
|
|
|
|
// sticky. Last, only if there are no OneShot keys currently being held.
|
|
|
|
|
if (key == cancel_oneshot_key_ &&
|
|
|
|
|
keyToggledOn(key_state) &&
|
|
|
|
|
!(key_state & INJECTED) &&
|
|
|
|
|
::OneShot.isActive()) {
|
|
|
|
|
// Cancel all OneShot keys
|
|
|
|
|
::OneShot.cancel(true);
|
|
|
|
|
// Change the escape key to a blank key, and signal that event processing is
|
|
|
|
|
// complete.
|
|
|
|
|
// Change the cancellation key to a blank key, and signal that event
|
|
|
|
|
// processing is complete.
|
|
|
|
|
key = Key_NoKey;
|
|
|
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
|
|
|
}
|
|
|
|
|