From 6fcd25ef965b9cb051bec61fdc4b420188ae30b9 Mon Sep 17 00:00:00 2001 From: Valerie Date: Tue, 15 Aug 2023 19:08:32 -0400 Subject: [PATCH] updated to newer version of qmk with breaking changes and removed unneeded files --- .gitignore | 1 - ergodox/keymap.c | 2 +- preonic/keymap.c | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2bc6ddc..9d0c5e7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -*/target build.sh diff --git a/ergodox/keymap.c b/ergodox/keymap.c index a9a1a34..034462b 100644 --- a/ergodox/keymap.c +++ b/ergodox/keymap.c @@ -21,7 +21,7 @@ typedef enum { TD_CAPS, TD_QUIT } tap_dance; -qk_tap_dance_action_t tap_dance_actions[] = { +tap_dance_action_t tap_dance_actions[] = { [TD_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_LSFT, KC_CAPS), [TD_QUIT] = ACTION_TAP_DANCE_DOUBLE(LSG(KC_ESC), LSG(KC_Q)) }; diff --git a/preonic/keymap.c b/preonic/keymap.c index d571686..55c88d3 100644 --- a/preonic/keymap.c +++ b/preonic/keymap.c @@ -19,7 +19,7 @@ typedef enum { typedef enum { TD_QUIT } tap_dance; -qk_tap_dance_action_t tap_dance_actions[] = { +tap_dance_action_t tap_dance_actions[] = { [TD_QUIT] = ACTION_TAP_DANCE_DOUBLE(LSG(KC_ESC), LSG(KC_Q)) };