diff options
author | Greg Wright <kwip000@protonmail.com> | 2020-08-15 16:55:13 -0400 |
---|---|---|
committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-08-29 14:30:02 -0700 |
commit | 568cae28ec41acc84a4a60bc3e20120e33ebee89 (patch) | |
tree | 11399d2b3865d08a73249ef6ebbdd14e952804ef /quantum/quantum_keycodes.h | |
parent | 167daa9cf8c6376a1c9b92ae7dfaa8bdac21f62a (diff) | |
download | qmk_firmware-568cae28ec41acc84a4a60bc3e20120e33ebee89.tar.gz qmk_firmware-568cae28ec41acc84a4a60bc3e20120e33ebee89.zip |
#define AUTO_SHIFT_SETUP (#8441)
* #define AUTO_SHIFT_SETUP
* Clarification
Changed `#ifndef` to `#ifdef` and moved enable disable outside AUTO_SHIFT_SETUP
* AUTO_SHIFT_NO_SETUp
Diffstat (limited to 'quantum/quantum_keycodes.h')
-rw-r--r-- | quantum/quantum_keycodes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h index 5e7c9ad33..a0a7bc340 100644 --- a/quantum/quantum_keycodes.h +++ b/quantum/quantum_keycodes.h | |||
@@ -123,10 +123,12 @@ enum quantum_keycodes { | |||
123 | KC_LEAD, | 123 | KC_LEAD, |
124 | #endif | 124 | #endif |
125 | 125 | ||
126 | // Auto Shift setup | 126 | // Auto Shift setup |
127 | #ifndef AUTO_SHIFT_NO_SETUP | ||
127 | KC_ASUP, | 128 | KC_ASUP, |
128 | KC_ASDN, | 129 | KC_ASDN, |
129 | KC_ASRP, | 130 | KC_ASRP, |
131 | #endif | ||
130 | KC_ASTG, | 132 | KC_ASTG, |
131 | KC_ASON, | 133 | KC_ASON, |
132 | KC_ASOFF, | 134 | KC_ASOFF, |