Fixup handwired/jscotto/scotto40 (#19675)
This commit is contained in:
parent
79d5f2feb3
commit
dd7b244872
1 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@ enum {
|
||||||
TD_ESC_WINDOWS_EMOJI
|
TD_ESC_WINDOWS_EMOJI
|
||||||
};
|
};
|
||||||
|
|
||||||
void td_esc_spotlight_emoji (qk_tap_dance_state_t *state, void *user_data) {
|
void td_esc_spotlight_emoji (tap_dance_state_t *state, void *user_data) {
|
||||||
if (state->count == 1) {
|
if (state->count == 1) {
|
||||||
tap_code(KC_ESC);
|
tap_code(KC_ESC);
|
||||||
} else if (state->count == 2) {
|
} else if (state->count == 2) {
|
||||||
|
@ -33,7 +33,7 @@ void td_esc_spotlight_emoji (qk_tap_dance_state_t *state, void *user_data) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void td_esc_windows_emoji (qk_tap_dance_state_t *state, void *user_data) {
|
void td_esc_windows_emoji (tap_dance_state_t *state, void *user_data) {
|
||||||
if (state->count == 1) {
|
if (state->count == 1) {
|
||||||
tap_code(KC_ESC);
|
tap_code(KC_ESC);
|
||||||
} else if (state->count == 2) {
|
} else if (state->count == 2) {
|
||||||
|
@ -44,7 +44,7 @@ void td_esc_windows_emoji (qk_tap_dance_state_t *state, void *user_data) {
|
||||||
};
|
};
|
||||||
|
|
||||||
// Tap Dance definitions
|
// Tap Dance definitions
|
||||||
qk_tap_dance_action_t tap_dance_actions[] = {
|
tap_dance_action_t tap_dance_actions[] = {
|
||||||
[TD_ESC_SPOTLIGHT_EMOJI] = ACTION_TAP_DANCE_FN(td_esc_spotlight_emoji),
|
[TD_ESC_SPOTLIGHT_EMOJI] = ACTION_TAP_DANCE_FN(td_esc_spotlight_emoji),
|
||||||
[TD_ESC_WINDOWS_EMOJI] = ACTION_TAP_DANCE_FN(td_esc_windows_emoji)
|
[TD_ESC_WINDOWS_EMOJI] = ACTION_TAP_DANCE_FN(td_esc_windows_emoji)
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue