Add a timeout to space-cadet shift.
When one holds a Space Cadet shift, to have it act as a shift, so that mouse behaviour changes, when released without any other key pressed, it still registers a paren. To remedy this, add a hold timeout: if the key is held longer than TAPPING_TERM, it will not register the parens. Fixes #884, with the side-effect of not being able to have parens trigger the OS-side repeat anymore. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>master
parent
a06115df19
commit
ffa5b1e7ea
|
@ -75,6 +75,7 @@ void reset_keyboard(void) {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static bool shift_interrupted[2] = {0, 0};
|
static bool shift_interrupted[2] = {0, 0};
|
||||||
|
static uint16_t scs_timer = 0;
|
||||||
|
|
||||||
bool process_record_quantum(keyrecord_t *record) {
|
bool process_record_quantum(keyrecord_t *record) {
|
||||||
|
|
||||||
|
@ -283,6 +284,7 @@ bool process_record_quantum(keyrecord_t *record) {
|
||||||
case KC_LSPO: {
|
case KC_LSPO: {
|
||||||
if (record->event.pressed) {
|
if (record->event.pressed) {
|
||||||
shift_interrupted[0] = false;
|
shift_interrupted[0] = false;
|
||||||
|
scs_timer = timer_read ();
|
||||||
register_mods(MOD_BIT(KC_LSFT));
|
register_mods(MOD_BIT(KC_LSFT));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -292,7 +294,7 @@ bool process_record_quantum(keyrecord_t *record) {
|
||||||
shift_interrupted[1] = true;
|
shift_interrupted[1] = true;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
if (!shift_interrupted[0]) {
|
if (!shift_interrupted[0] && timer_elapsed(scs_timer) < TAPPING_TERM) {
|
||||||
register_code(LSPO_KEY);
|
register_code(LSPO_KEY);
|
||||||
unregister_code(LSPO_KEY);
|
unregister_code(LSPO_KEY);
|
||||||
}
|
}
|
||||||
|
@ -305,6 +307,7 @@ bool process_record_quantum(keyrecord_t *record) {
|
||||||
case KC_RSPC: {
|
case KC_RSPC: {
|
||||||
if (record->event.pressed) {
|
if (record->event.pressed) {
|
||||||
shift_interrupted[1] = false;
|
shift_interrupted[1] = false;
|
||||||
|
scs_timer = timer_read ();
|
||||||
register_mods(MOD_BIT(KC_RSFT));
|
register_mods(MOD_BIT(KC_RSFT));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -314,7 +317,7 @@ bool process_record_quantum(keyrecord_t *record) {
|
||||||
shift_interrupted[1] = true;
|
shift_interrupted[1] = true;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
if (!shift_interrupted[1]) {
|
if (!shift_interrupted[1] && timer_elapsed(scs_timer) < TAPPING_TERM) {
|
||||||
register_code(RSPC_KEY);
|
register_code(RSPC_KEY);
|
||||||
unregister_code(RSPC_KEY);
|
unregister_code(RSPC_KEY);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue