diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-08-17 21:15:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-17 21:15:29 -0400 |
commit | f4f80a0e3ac24f573ce72fea88e291e94108b9d8 (patch) | |
tree | 0bee9e1da04d21e6852c1e9a0c29bfe6e1a82176 /readme.md | |
parent | 1442a882d4dd11eea033c34308c8adf49be53e95 (diff) | |
parent | 29f64d7a93d941167c6c6e95f893ab84586b2205 (diff) |
Merge pull request #645 from algernon/f/tap-dance/buffering
tap-dance rework
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -431,7 +431,7 @@ enum { }; //Tap Dance Definitions -const qk_tap_dance_action_t tap_dance_actions[] = { +qk_tap_dance_action_t tap_dance_actions[] = { //Tap once for Esc, twice for Caps Lock [TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS) // 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) { ergodox_right_led_3_off(); } -const qk_tap_dance_action_t tap_dance_actions[] = { +qk_tap_dance_action_t tap_dance_actions[] = { [CT_SE] = ACTION_TAP_DANCE_DOUBLE (KC_SPC, KC_ENT) ,[CT_CLN] = ACTION_TAP_DANCE_FN_ADVANCED (NULL, dance_cln_finished, dance_cln_reset) ,[CT_EGG] = ACTION_TAP_DANCE_FN (dance_egg) |