summaryrefslogtreecommitdiffstats
path: root/quantum
diff options
context:
space:
mode:
authorMatthias Schmitt <male.schmitt@gmail.com>2015-12-19 01:39:44 +0100
committerMatthias Schmitt <male.schmitt@gmail.com>2015-12-19 01:39:44 +0100
commit6c15dac7dbf661ecba5e627ab21cd8e99bc716cd (patch)
tree497d19833d85e3b565ed27a3e85428db9deab90e /quantum
parent3dbcad51d1217b32c3c17917c2646fa7a9a9165b (diff)
downloadqmk_firmware-6c15dac7dbf661ecba5e627ab21cd8e99bc716cd.tar.gz
qmk_firmware-6c15dac7dbf661ecba5e627ab21cd8e99bc716cd.tar.xz
Add Ctrl-Shift tap modifier
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 e5d4db9ab..2d8b29c77 100644
--- a/quantum/keymap_common.h
+++ b/quantum/keymap_common.h
@@ -191,6 +191,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 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 ALL_T(kc) MT(0xF, kc) // see http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/