diff options
author | nstickney <nstickney@gmail.com> | 2017-03-08 22:29:12 -0600 |
---|---|---|
committer | nstickney <nstickney@gmail.com> | 2017-03-08 22:29:12 -0600 |
commit | ce0b8ea676011e49bbc3e15d354eb83269e2c63e (patch) | |
tree | 8d5dc1cae301867b816be45ec2da9d34daacab52 /quantum | |
parent | 82cbe71bb52403f0c9cd23925c10cfdc97021919 (diff) | |
parent | 7c7a77d4bf8f35cd7f59119be0e95b5d28063988 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/quantum_keycodes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h index 63b626926d..903d57f1ee 100644 --- a/quantum/quantum_keycodes.h +++ b/quantum/quantum_keycodes.h @@ -183,6 +183,7 @@ enum quantum_keycodes { #define ALTG(kc) (kc | QK_RCTL | QK_RALT) #define SCMD(kc) (kc | QK_LGUI | QK_LSFT) #define SWIN(kc) SCMD(kc) +#define LCA(kc) (kc | QK_LCTL | QK_LALT) #define MOD_HYPR 0xf #define MOD_MEH 0x7 @@ -339,6 +340,7 @@ enum quantum_keycodes { #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/ #define SCMD_T(kc) MT((MOD_LGUI | MOD_LSFT), kc) #define SWIN_T(kc) SCMD_T(kc) +#define LCA_T(kc) MT((MOD_LCTL | MOD_LALT), kc) // Left control and left alt // Dedicated keycode versions for Hyper and Meh, if you want to use them as standalone keys rather than mod-tap #define KC_HYPR HYPR(KC_NO) |