summaryrefslogtreecommitdiff
path: root/users/zigotica/tapdances.c
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2023-11-26 18:36:45 +0000
committerGitHub <noreply@github.com>2023-11-27 05:36:45 +1100
commit1ed03f498fa204178c2696c510ac6a2cd8524e2d (patch)
treeb97c1f983b7e4b57c007d0feedadd3ad3e39062b /users/zigotica/tapdances.c
parent4908d4b1ca260efecf3613e6517aa3a6f2034876 (diff)
Remove userspace keymaps (#22544)
Diffstat (limited to 'users/zigotica/tapdances.c')
-rw-r--r--users/zigotica/tapdances.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/users/zigotica/tapdances.c b/users/zigotica/tapdances.c
deleted file mode 100644
index 69390d244c..0000000000
--- a/users/zigotica/tapdances.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/* Copyright 2020 Sergi Meseguer <zigotica@gmail.com>
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 2 of the License, or
-(at your option) any later version.
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-You should have received a copy of the GNU General Public License
-along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#include "tapdances.h"
-
-void ios_media(tap_dance_state_t *state, void *user_data) {
- if (state->count == 1) {
- tap_code(KC_MPLY);
- } else if (state->count == 2) {
- tap_code(KC_MNXT);
- } else if (state->count == 3) {
- tap_code(KC_MPRV);
- } else {
- reset_tap_dance(state);
- }
-}
-
-tap_dance_action_t tap_dance_actions[] = {
- [0] = ACTION_TAP_DANCE_FN(ios_media),
- [1] = ACTION_TAP_DANCE_DOUBLE(KC_COMM, KC_SCLN),
- [2] = ACTION_TAP_DANCE_DOUBLE(KC_DOT, KC_COLON),
- [3] = ACTION_TAP_DANCE_DOUBLE(KC_LBRC, KC_RBRC),
- [4] = ACTION_TAP_DANCE_DOUBLE(KC_LPRN, KC_RPRN),
-};