diff options
author | Drashna Jael're <drashna@live.com> | 2018-03-09 09:37:41 -0800 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-03-09 13:15:10 -0500 |
commit | 3f1d147529233ebcc918cd3e4c96a8d249c321ce (patch) | |
tree | d07f21f3935acaa4f40d98e8ecdba311f9bc425a /quantum | |
parent | eba4b08a4a8734bb6c74602e317981a4542c634d (diff) | |
download | firmware-3f1d147529233ebcc918cd3e4c96a8d249c321ce.tar.gz firmware-3f1d147529233ebcc918cd3e4c96a8d249c321ce.tar.bz2 firmware-3f1d147529233ebcc918cd3e4c96a8d249c321ce.zip |
Add SS_RALT for AltGR usage in macros
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/quantum.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index b4c9e0b89..e6d76015b 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -124,6 +124,7 @@ extern uint32_t default_layer_state; #define SS_LGUI(string) SS_DOWN(X_LGUI) string SS_UP(X_LGUI) #define SS_LALT(string) SS_DOWN(X_LALT) string SS_UP(X_LALT) #define SS_LSFT(string) SS_DOWN(X_LSHIFT) string SS_UP(X_LSHIFT) +#define SS_RALT(string) SS_DOWN(X_RALT) string SS_UP(X_RALT) #define SEND_STRING(str) send_string_P(PSTR(str)) extern const bool ascii_to_shift_lut[0x80]; |