summaryrefslogtreecommitdiffstats
path: root/quantum
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2022-10-17 00:14:40 +1100
committerGitHub <noreply@github.com>2022-10-16 14:14:40 +0100
commit74223c34a969c0877bde035c721c21a1f25890fa (patch)
tree1daea9db13a0adb529e5aba4aa1e6f893cb7ed8c /quantum
parent39c22f5cf5011427ece26c510d0b1ab42edf34db (diff)
Remove legacy keycodes, part 6 (#18740)
* `KC_RSHIFT` -> `KC_RSFT` * `KC_RCTRL` -> `KC_RCTL` * `KC_LSHIFT` -> `KC_LSFT` * `KC_LCTRL` -> `KC_LCTL`
Diffstat (limited to 'quantum')
-rw-r--r--quantum/keycode.h2
-rw-r--r--quantum/keycode_legacy.h10
2 files changed, 0 insertions, 12 deletions
diff --git a/quantum/keycode.h b/quantum/keycode.h
index b492e4292a..2e9a85ee66 100644
--- a/quantum/keycode.h
+++ b/quantum/keycode.h
@@ -545,5 +545,3 @@ enum mouse_keys {
KC_MS_ACCEL1,
KC_MS_ACCEL2 // 0xDF, or 0xFF if via enabled
};
-
-#include "keycode_legacy.h"
diff --git a/quantum/keycode_legacy.h b/quantum/keycode_legacy.h
deleted file mode 100644
index d69d141291..0000000000
--- a/quantum/keycode_legacy.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#pragma once
-
-// clang-format off
-
-// These keycode names have been deprecated
-
-#define KC_LCTRL KC_LEFT_CTRL
-#define KC_LSHIFT KC_LEFT_SHIFT
-#define KC_RCTRL KC_RIGHT_CTRL
-#define KC_RSHIFT KC_RIGHT_SHIFT