Browse Source

[Docs] Add default case to tap dance example 5. (#14893)

pull/14931/head
ForsakenRei 2 years ago
committed by GitHub
parent
commit
ff39890620
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      docs/feature_tap_dance.md

+ 6
- 0
docs/feature_tap_dance.md View File

@ -393,6 +393,9 @@ void altlp_finished(qk_tap_dance_state_t *state, void *user_data) {
case TD_DOUBLE_SINGLE_TAP: // Allow nesting of 2 parens `((` within tapping term case TD_DOUBLE_SINGLE_TAP: // Allow nesting of 2 parens `((` within tapping term
tap_code16(KC_LPRN); tap_code16(KC_LPRN);
register_code16(KC_LPRN); register_code16(KC_LPRN);
break;
default:
break;
} }
} }
@ -406,6 +409,9 @@ void altlp_reset(qk_tap_dance_state_t *state, void *user_data) {
break; break;
case TD_DOUBLE_SINGLE_TAP: case TD_DOUBLE_SINGLE_TAP:
unregister_code16(KC_LPRN); unregister_code16(KC_LPRN);
break;
default:
break;
} }
} }


Loading…
Cancel
Save