summaryrefslogtreecommitdiffstats
path: root/quantum
diff options
context:
space:
mode:
authorErez Zukerman <ezuk@madmimi.com>2015-10-28 23:16:53 +0100
committerErez Zukerman <ezuk@madmimi.com>2015-10-28 23:16:53 +0100
commit4b0c54324ab467daf1567a285fd5f79dc7f9d3e4 (patch)
treed28fba80bc40963e167092a7128c56d731bf5111 /quantum
parentea0e1169e675a3f11486acaa56dd28e0ade8a9d8 (diff)
downloadqmk_firmware-4b0c54324ab467daf1567a285fd5f79dc7f9d3e4.tar.gz
qmk_firmware-4b0c54324ab467daf1567a285fd5f79dc7f9d3e4.tar.xz
Adds Hyper key, tweaks ErgoDox EZ default keymap
Diffstat (limited to 'quantum')
-rw-r--r--quantum/keymap_common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/keymap_common.h b/quantum/keymap_common.h
index fbb2ac8c2..550b1528b 100644
--- a/quantum/keymap_common.h
+++ b/quantum/keymap_common.h
@@ -188,6 +188,7 @@ extern const uint16_t fn_actions[];
#define SFT_T(kc) MT(0x2, kc)
#define ALT_T(kc) MT(0x4, kc)
#define GUI_T(kc) MT(0x8, kc)
+#define ALL_T(kc) MT(0xF, kc) // see http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/
// L-ayer, T-ap - 256 keycode max, 16 layer max
#define LT(layer, kc) (kc | 0x8000 | ((layer & 0xF) << 8))