diff options
Diffstat (limited to 'quantum/quantum_keycodes.h')
-rw-r--r-- | quantum/quantum_keycodes.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h index 56228f276..1e3df9fa6 100644 --- a/quantum/quantum_keycodes.h +++ b/quantum/quantum_keycodes.h | |||
@@ -389,9 +389,6 @@ enum quantum_keycodes { | |||
389 | #ifdef BLUETOOTH_ENABLE | 389 | #ifdef BLUETOOTH_ENABLE |
390 | OUT_BT, | 390 | OUT_BT, |
391 | #endif | 391 | #endif |
392 | #ifdef ADAFRUIT_BLE_ENABLE | ||
393 | OUT_BLE, | ||
394 | #endif | ||
395 | 392 | ||
396 | // always leave at the end | 393 | // always leave at the end |
397 | SAFE_RANGE | 394 | SAFE_RANGE |
@@ -413,6 +410,7 @@ enum quantum_keycodes { | |||
413 | #define ALTG(kc) (kc | QK_RCTL | QK_RALT) | 410 | #define ALTG(kc) (kc | QK_RCTL | QK_RALT) |
414 | #define SCMD(kc) (kc | QK_LGUI | QK_LSFT) | 411 | #define SCMD(kc) (kc | QK_LGUI | QK_LSFT) |
415 | #define SWIN(kc) SCMD(kc) | 412 | #define SWIN(kc) SCMD(kc) |
413 | #define LCA(kc) (kc | QK_LCTL | QK_LALT) | ||
416 | 414 | ||
417 | #define MOD_HYPR 0xf | 415 | #define MOD_HYPR 0xf |
418 | #define MOD_MEH 0x7 | 416 | #define MOD_MEH 0x7 |
@@ -566,6 +564,7 @@ enum quantum_keycodes { | |||
566 | #define ALL_T(kc) MT((MOD_LCTL | MOD_LSFT | MOD_LALT | MOD_LGUI), kc) // see http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/ | 564 | #define ALL_T(kc) MT((MOD_LCTL | MOD_LSFT | MOD_LALT | MOD_LGUI), kc) // see http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/ |
567 | #define SCMD_T(kc) MT((MOD_LGUI | MOD_LSFT), kc) | 565 | #define SCMD_T(kc) MT((MOD_LGUI | MOD_LSFT), kc) |
568 | #define SWIN_T(kc) SCMD_T(kc) | 566 | #define SWIN_T(kc) SCMD_T(kc) |
567 | #define LCA_T(kc) MT((MOD_LCTL | MOD_LALT), kc) // Left control and left alt | ||
569 | 568 | ||
570 | // Dedicated keycode versions for Hyper and Meh, if you want to use them as standalone keys rather than mod-tap | 569 | // Dedicated keycode versions for Hyper and Meh, if you want to use them as standalone keys rather than mod-tap |
571 | #define KC_HYPR HYPR(KC_NO) | 570 | #define KC_HYPR HYPR(KC_NO) |