diff --git a/common/keymap.h b/common/keymap.h index c33e70f..bca8d67 100644 --- a/common/keymap.h +++ b/common/keymap.h @@ -104,20 +104,6 @@ uint16_t get_tapping_term(uint16_t keycode, keyrecord_t* record) { } } -uint16_t get_tap_flow(uint16_t keycode, keyrecord_t* record, uint16_t prev_keycode) { - switch (keycode) { - // no filter for thumb keys - case CC_SYM: - case CC_NUM: - case CC_NAV: - case CC_FUN: - return 0; - - default: - return g_tap_flow_term; - } -} - #ifndef CC_NO_LED void keyboard_post_init_user(void) { diff --git a/keymap.json b/keymap.json index 9c57772..c02ade5 100644 --- a/keymap.json +++ b/keymap.json @@ -1,3 +1,3 @@ { - "modules": ["getreuer/tap_flow"] + "modules": [] } diff --git a/rules.mk b/rules.mk index 89cb3b6..5485521 100644 --- a/rules.mk +++ b/rules.mk @@ -4,10 +4,6 @@ NKRO_ENABLE = yes # optimize size LTO_ENABLE = yes -# needed for getreuer/tap_flow -COMBOS_ENABLE = yes -REPEAT_KEY_ENABLE = yes - # add bongocat & luna for OLEDs ifeq ($(strip $(OLED_ENABLE)), yes) SRC += features/oled_bongocat.c