mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
Add SGUI()
and SGUI_T()
for consistency with KC_GUI
(#2442)
* Add `SGUI()` as an alias of `SCMD()` for consistency with `KC_GUI` * Add `SGUI_T()` as an alias of `SCMD_T()` for consistency with `KC_GUI` * Make SGUI the primary name
This commit is contained in:
parent
31cae1f1bd
commit
e3f67e6e7f
1 changed files with 4 additions and 2 deletions
|
@ -454,7 +454,8 @@ enum quantum_keycodes {
|
|||
#define MEH(kc) (kc | QK_LCTL | QK_LSFT | QK_LALT)
|
||||
#define LCAG(kc) (kc | QK_LCTL | QK_LALT | QK_LGUI)
|
||||
#define ALTG(kc) (kc | QK_RCTL | QK_RALT)
|
||||
#define SCMD(kc) (kc | QK_LGUI | QK_LSFT)
|
||||
#define SGUI(kc) (kc | QK_LGUI | QK_LSFT)
|
||||
#define SCMD(kc) SCMD(kc)
|
||||
#define SWIN(kc) SCMD(kc)
|
||||
#define LCA(kc) (kc | QK_LCTL | QK_LALT)
|
||||
|
||||
|
@ -619,7 +620,8 @@ enum quantum_keycodes {
|
|||
#define LCAG_T(kc) MT((MOD_LCTL | MOD_LALT | MOD_LGUI), kc) // Left control alt and gui
|
||||
#define RCAG_T(kc) MT((MOD_RCTL | MOD_RALT | MOD_RGUI), kc) // Right control alt and gui
|
||||
#define ALL_T(kc) MT((MOD_LCTL | MOD_LSFT | MOD_LALT | MOD_LGUI), kc) // see http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/
|
||||
#define SCMD_T(kc) MT((MOD_LGUI | MOD_LSFT), kc)
|
||||
#define SGUI_T(kc) MT((MOD_LGUI | MOD_LSFT), kc)
|
||||
#define SCMD_T(kc) SCMD_T(kc)
|
||||
#define SWIN_T(kc) SCMD_T(kc)
|
||||
#define LCA_T(kc) MT((MOD_LCTL | MOD_LALT), kc) // Left control and left alt
|
||||
|
||||
|
|
Loading…
Reference in a new issue