diff options
author | Nick Brassel <nick@tzarc.org> | 2023-12-18 13:53:02 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-18 13:53:02 +1100 |
commit | 9539f135d8161557f0ffdfecb6e8c8c8b09786a2 (patch) | |
tree | e1f5fd65dfebcefd59287029a88979c9e38bbb7d /keyboards/2key2crawl/keymaps/tabs | |
parent | 27a710861ebd2a1e0a13a7e39f6a6c6568909bb4 (diff) |
Remove obvious user keymaps, `keyboards/[0-9]*` edition. (#22691)
Diffstat (limited to 'keyboards/2key2crawl/keymaps/tabs')
-rw-r--r-- | keyboards/2key2crawl/keymaps/tabs/keymap.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/keyboards/2key2crawl/keymaps/tabs/keymap.c b/keyboards/2key2crawl/keymaps/tabs/keymap.c deleted file mode 100644 index 9066c3f2e6..0000000000 --- a/keyboards/2key2crawl/keymaps/tabs/keymap.c +++ /dev/null @@ -1,26 +0,0 @@ -#include QMK_KEYBOARD_H - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - -LAYOUT( - KC_1, KC_2, KC_3, KC_4, KC_5, - KC_6, KC_7, KC_8, KC_9, KC_0, KC_ENTER), - -}; - -void matrix_init_user(void) { - debug_config.matrix = 1; - debug_config.keyboard = 1; - debug_config.enable = 1; -} - -bool encoder_update_user(uint8_t index, bool clockwise) { - if (index == 0) { - if (clockwise) { - tap_code16(C(KC_T)); - } else { - tap_code16(C(KC_W)); - } - } - return true; -} |