]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
[Jack & Erez] Adds standalone versions of Hyper and Meh
authorErez Zukerman <ezuk@madmimi.com>
Tue, 10 Nov 2015 02:18:44 +0000 (04:18 +0200)
committerErez Zukerman <ezuk@madmimi.com>
Tue, 10 Nov 2015 02:18:44 +0000 (04:18 +0200)
quantum/keymap_common.h

index e543e7e668063f83a1bbeeec2be7eac86c6397fc..cc46cab66b441a14ea8bb53e3905434eafae4b1f 100644 (file)
@@ -194,6 +194,10 @@ extern const uint16_t fn_actions[];
 #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 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
+#define KC_HYPR HYPR(KC_NO)
+#define KC_MEH  MEH(KC_NO)
+
 // L-ayer, T-ap - 256 keycode max, 16 layer max
 #define LT(layer, kc) (kc | 0x8000 | ((layer & 0xF) << 8))