Add C(), A() and G() to match already existing S() (#4673)

This commit is contained in:
fauxpark 2019-01-26 08:12:48 +11:00 committed by Drashna Jaelre
parent 2f009d7461
commit 79b58937f4
12 changed files with 66 additions and 64 deletions

View file

@ -567,9 +567,12 @@ enum quantum_keycodes {
#define FUNC(kc) (QK_FUNCTION | (kc))
// Aliases
#define C(kc) LCTL(kc)
#define S(kc) LSFT(kc)
#define F(kc) FUNC(kc)
#define A(kc) LALT(kc)
#define G(kc) LGUI(kc)
#define F(kc) FUNC(kc)
#define M(kc) (QK_MACRO | (kc))
#define MACROTAP(kc) (QK_MACRO | (FUNC_TAP << 8) | (kc))