diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-01-23 20:33:35 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-01-23 20:33:35 -0500 |
commit | 544a49329cac78206c0d195f2e7bfd39db05507d (patch) | |
tree | bfcd304f7215738909e1241d73a77a426f5a195c /quantum/keymap_common.h | |
parent | a820533ab770e1919f190c102a091c1060f6302e (diff) | |
parent | e5aee62e54d0b6f02ff170f4e9bf1e738d36fb4c (diff) |
Merge branch 'master' of https://github.com/jackhumbert/tmk_keyboard into smarkefile
Diffstat (limited to 'quantum/keymap_common.h')
-rw-r--r-- | quantum/keymap_common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/quantum/keymap_common.h b/quantum/keymap_common.h index 2d8b29c777..3db40772e0 100644 --- a/quantum/keymap_common.h +++ b/quantum/keymap_common.h @@ -68,6 +68,7 @@ extern const uint16_t fn_actions[]; #define LGUI(kc) kc | 0x0800 #define HYPR(kc) kc | 0x0F00 #define MEH(kc) kc | 0x0700 +#define LCAG(kc) kc | 0x0D00 // Modifier Ctrl Alt and GUI #define RCTL(kc) kc | 0x1100 #define RSFT(kc) kc | 0x1200 @@ -193,6 +194,7 @@ extern const uint16_t fn_actions[]; #define GUI_T(kc) MT(0x8, kc) #define C_S_T(kc) MT(0x3, kc) // Control + Shift e.g. for gnome-terminal #define MEH_T(kc) MT(0x7, kc) // Meh is a less hyper version of the Hyper key -- doesn't include Win or Cmd, so just alt+shift+ctrl +#define LCAG_T(kc) MT(0xD, kc) // Left control alt and gui #define ALL_T(kc) MT(0xF, kc) // see http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/ // Dedicated keycode versions for Hyper and Meh, if you want to use them as standalone keys rather than mod-tap |