aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/readme.md b/readme.md
index e2221e749..8c07a5d1f 100644
--- a/readme.md
+++ b/readme.md
@@ -431,7 +431,7 @@ enum {
431}; 431};
432 432
433//Tap Dance Definitions 433//Tap Dance Definitions
434const qk_tap_dance_action_t tap_dance_actions[] = { 434qk_tap_dance_action_t tap_dance_actions[] = {
435 //Tap once for Esc, twice for Caps Lock 435 //Tap once for Esc, twice for Caps Lock
436 [TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS) 436 [TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS)
437// Other declarations would go here, separated by commas, if you have them 437// Other declarations would go here, separated by commas, if you have them
@@ -517,7 +517,7 @@ void dance_flsh_reset(qk_tap_dance_state_t *state, void *user_data) {
517 ergodox_right_led_3_off(); 517 ergodox_right_led_3_off();
518} 518}
519 519
520const qk_tap_dance_action_t tap_dance_actions[] = { 520qk_tap_dance_action_t tap_dance_actions[] = {
521 [CT_SE] = ACTION_TAP_DANCE_DOUBLE (KC_SPC, KC_ENT) 521 [CT_SE] = ACTION_TAP_DANCE_DOUBLE (KC_SPC, KC_ENT)
522 ,[CT_CLN] = ACTION_TAP_DANCE_FN_ADVANCED (NULL, dance_cln_finished, dance_cln_reset) 522 ,[CT_CLN] = ACTION_TAP_DANCE_FN_ADVANCED (NULL, dance_cln_finished, dance_cln_reset)
523 ,[CT_EGG] = ACTION_TAP_DANCE_FN (dance_egg) 523 ,[CT_EGG] = ACTION_TAP_DANCE_FN (dance_egg)