updated to newer version of qmk with breaking changes and removed unneeded files
This commit is contained in:
parent
a8107684f8
commit
6fcd25ef96
3 changed files with 2 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,3 @@
|
|||
|
||||
*/target
|
||||
build.sh
|
||||
|
||||
|
|
|
@ -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))
|
||||
};
|
||||
|
|
|
@ -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))
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue