1
0
Fork 0

Added per case tapping term, updated FF-nikchi keymap.

This commit is contained in:
Nick Choi 2017-05-25 00:41:00 -04:00
parent 17a378715e
commit e695b5a33b
4 changed files with 15 additions and 9 deletions

View file

@ -3,7 +3,7 @@
#include "../../config.h"
#define TAPPING_TERM 800
#define TAPPING_TERM 200
#define LEADER_TIMEOUT 400
#define DISABLE_SPACE_CADET_ROLLOVER

View file

@ -77,10 +77,10 @@ enum quick {
qk_tap_dance_action_t tap_dance_actions[] = {
// Tap once for CTRL, twice for Caps Lock
[TD_CTCPS] = ACTION_TAP_DANCE_DOUBLE(KC_LCTL, KC_CAPS),
[EMOJIS] = ACTION_TAP_DANCE_FN_ADVANCED(cycleEmojis, NULL, NULL),
[ANIMAL] = ACTION_TAP_DANCE_FN_ADVANCED(cycleAnimals, NULL, NULL),
[HAND] = ACTION_TAP_DANCE_FN_ADVANCED(cycleHands, NULL, NULL),
[MEMES] = ACTION_TAP_DANCE_FN_ADVANCED(cycleMemes, NULL, NULL)
[EMOJIS] = ACTION_TAP_DANCE_FN_ADVANCED(cycleEmojis, NULL, NULL, 800),
[ANIMAL] = ACTION_TAP_DANCE_FN_ADVANCED(cycleAnimals, NULL, NULL, 800),
[HAND] = ACTION_TAP_DANCE_FN_ADVANCED(cycleHands, NULL, NULL, 800),
[MEMES] = ACTION_TAP_DANCE_FN_ADVANCED(cycleMemes, NULL, NULL, 800)
// Other declarations would go here, separated by commas, if you have them
};