summaryrefslogtreecommitdiff
path: root/quantum/quantum_keycodes.h
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2022-10-23 07:45:20 +1100
committerGitHub <noreply@github.com>2022-10-22 21:45:20 +0100
commit74484e21afc819b8e20f408aebc5c4e6cfdcc991 (patch)
tree0549490929ac1b13d035e1ea3b13b32debc26dc1 /quantum/quantum_keycodes.h
parent2e2e7511fdcafd42659d77eeeff4da88301f73ee (diff)
Deprecate `VLK_TOG` for `VK_TOGG` (#18807)
Diffstat (limited to 'quantum/quantum_keycodes.h')
-rw-r--r--quantum/quantum_keycodes.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h
index caf4d2b395..44702a362d 100644
--- a/quantum/quantum_keycodes.h
+++ b/quantum/quantum_keycodes.h
@@ -359,7 +359,7 @@ enum quantum_keycodes {
RGB_MODE_RGBTEST, // 5CD6
// Velocikey
- VLK_TOG, // 5CD7
+ QK_VELOCIKEY_TOGGLE, // 5CD7
// Space Cadet
KC_LSPO, // 5CD8
@@ -743,6 +743,9 @@ enum quantum_keycodes {
#define CRT_OFF AUTOCORRECT_OFF
#define CRT_TOG AUTOCORRECT_TOGGLE
+// Velocikey
+#define VK_TOGG QK_VELOCIKEY_TOGGLE
+
// GOTO layer - 256 layer max
#define TO(layer) (QK_TO | ((layer)&0xFF))