#include "../../config.h"
#define TAPPING_TERM 200
-#define LEADER_TIMEOUT 400
+#define LEADER_TIMEOUT 800
#define DISABLE_SPACE_CADET_ROLLOVER
RIGHTDESK,
CLOSEDESK
};
-enum quick {
- DISFACE = 0,
- TFLIP,
- TPUT,
- SHRUG,
- FACE,
- RANDIG
-};
+
// Tap Dance Definitions
qk_tap_dance_action_t tap_dance_actions[] = {
tap(KC_C);
unregister_code(KC_LCTL);
}
+ SEQ_THREE_KEYS(KC_L,KC_I,KC_T) { // 🔥
+ unicode_input_start();
+ register_hex32(pgm_read_dword(&unicode_map[LIT]));
+ unicode_input_finish();
+ }
}
}
}
};
+
void matrix_scan_tap_dance () {
if (highest_td == -1)
return;
- int tap_user_defined;
+ uint16_t tap_user_defined;
-for (int i = 0; i <= highest_td; i++) {
+for (uint8_t i = 0; i <= highest_td; i++) {
qk_tap_dance_action_t *action = &tap_dance_actions[i];
if(action->custom_tapping_term > 0 ) {
tap_user_defined = action->custom_tapping_term;