summaryrefslogtreecommitdiffstats
path: root/keyboards/yatara/drink_me/keymaps/queen/keymap.c
diff options
context:
space:
mode:
authorlokher <lokher@gmail.com>2022-12-06 17:10:48 +0800
committerlokher <lokher@gmail.com>2022-12-07 15:50:49 +0800
commita336c2c5005251e4cb0f3a62ccabdb4cfccad915 (patch)
tree3c948b631a5e3b6f940dabe02fad3c7487e6f350 /keyboards/yatara/drink_me/keymaps/queen/keymap.c
parent27fc28fd2ff52e079a5bc58d6aaea4c752420615 (diff)
Merge upstream master to 2022 Q4 breaking change
Diffstat (limited to 'keyboards/yatara/drink_me/keymaps/queen/keymap.c')
-rw-r--r--keyboards/yatara/drink_me/keymaps/queen/keymap.c67
1 files changed, 0 insertions, 67 deletions
diff --git a/keyboards/yatara/drink_me/keymaps/queen/keymap.c b/keyboards/yatara/drink_me/keymaps/queen/keymap.c
deleted file mode 100644
index 2d99b38663..0000000000
--- a/keyboards/yatara/drink_me/keymaps/queen/keymap.c
+++ /dev/null
@@ -1,67 +0,0 @@
-#include QMK_KEYBOARD_H
-
-
-enum td_keys {
- TD_K0,
- TD_K1,
- TD_K2,
- TD_K3
-};
-
-
-void td_spade_lnx (qk_tap_dance_state_t *state, void *user_data) {
- if (state->count == 1) {
- register_unicode(0x2660); // ♠
- } else {
- set_unicode_input_mode(UNICODE_MODE_LINUX);
- }
- reset_tap_dance(state);
-}
-
-
-void td_diamond_osx (qk_tap_dance_state_t *state, void *user_data) {
- if (state->count == 1) {
- register_unicode(0x2666); // ♦
- } else {
- set_unicode_input_mode(UNICODE_MODE_MACOS);
- }
- reset_tap_dance(state);
-}
-
-
-void td_club_win (qk_tap_dance_state_t *state, void *user_data) {
- if (state->count == 1) {
- register_unicode(0x2663); // ♣
- } else {
- set_unicode_input_mode(UNICODE_MODE_WINDOWS);
- }
- reset_tap_dance(state);
-}
-
-
-void td_heart_winc (qk_tap_dance_state_t *state, void *user_data) {
- if (state->count == 1) {
- register_unicode(0x2665); // ♥
- } else {
- set_unicode_input_mode(UNICODE_MODE_WINCOMPOSE);
- }
- reset_tap_dance(state);
-}
-
-
-qk_tap_dance_action_t tap_dance_actions[] = {
- [TD_K0] = ACTION_TAP_DANCE_FN(td_spade_lnx),
- [TD_K1] = ACTION_TAP_DANCE_FN(td_diamond_osx),
- [TD_K2] = ACTION_TAP_DANCE_FN(td_club_win),
- [TD_K3] = ACTION_TAP_DANCE_FN(td_heart_winc)
-};
-
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [0] = LAYOUT(
- TD(TD_K0),
- TD(TD_K1),
- TD(TD_K2),
- TD(TD_K3)
- )
-};