summaryrefslogtreecommitdiffstats
path: root/users/pcoves
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2022-10-11 06:06:26 +1100
committerGitHub <noreply@github.com>2022-10-10 20:06:26 +0100
commitc6f1b594a2085e67219bd5f0f7ba7898429d331c (patch)
tree615d8b6253c8c07beda12676f8cdbdcf2fa837a9 /users/pcoves
parentc87bc929086d41daf804c10d02ec7ee1fca61a4a (diff)
Remove legacy keycodes, part 2 (#18660)
* `KC_SYSREQ` -> `KC_SYRQ` And one `KC_ALT_ERASE` -> `KC_ERAS` * `KC_NONUS_BSLASH` -> `KC_NUBS` * `KC_NUMLOCK` -> `KC_NUM` * `KC_CLCK` -> `KC_CAPS` * `KC_SCROLLLOCK` -> `KC_SCRL` * `KC_LBRACKET` -> `KC_LBRC` * `KC_RBRACKET` -> `KC_RBRC` * `KC_CAPSLOCK` -> `KC_CAPS`
Diffstat (limited to 'users/pcoves')
-rw-r--r--users/pcoves/tapDance.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/users/pcoves/tapDance.c b/users/pcoves/tapDance.c
index f8c9aaf466..548ed35274 100644
--- a/users/pcoves/tapDance.c
+++ b/users/pcoves/tapDance.c
@@ -6,7 +6,7 @@ void left(qk_tap_dance_state_t* state, void* user_data) {
switch (state->count) {
case 1:
if (state->pressed)
- tap_code16(S(KC_LBRACKET));
+ tap_code16(S(KC_LEFT_BRACKET));
else
tap_code16(S(KC_9));
break;
@@ -14,7 +14,7 @@ void left(qk_tap_dance_state_t* state, void* user_data) {
if (state->pressed)
tap_code16(S(KC_COMM));
else
- tap_code(KC_LBRACKET);
+ tap_code(KC_LEFT_BRACKET);
break;
default:
reset_tap_dance(state);
@@ -25,7 +25,7 @@ void right(qk_tap_dance_state_t* state, void* user_data) {
switch (state->count) {
case 1:
if (state->pressed)
- tap_code16(S(KC_RBRACKET));
+ tap_code16(S(KC_RIGHT_BRACKET));
else
tap_code16(S(KC_0));
break;
@@ -33,7 +33,7 @@ void right(qk_tap_dance_state_t* state, void* user_data) {
if (state->pressed)
tap_code16(S(KC_DOT));
else
- tap_code(KC_RBRACKET);
+ tap_code(KC_RIGHT_BRACKET);
break;
default:
reset_tap_dance(state);