updated to newer version of qmk with breaking changes and removed unneeded files

This commit is contained in:
Valerie Wolfe 2023-08-15 19:08:32 -04:00
parent a8107684f8
commit 6fcd25ef96
3 changed files with 2 additions and 3 deletions

1
.gitignore vendored
View file

@ -1,4 +1,3 @@
*/target
build.sh

View file

@ -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))
};

View file

@ -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))
};