diff options
author | Konstantin Đorđević <vomindoraan@gmail.com> | 2018-12-12 19:17:19 +0100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-12-12 10:17:19 -0800 |
commit | 28fbf84cc5ff52f545011ea4198a6cc6d054f896 (patch) | |
tree | caf444ec1231e5f0852eca8d07e2f8595a153002 /quantum/quantum.h | |
parent | 8b6cdd17886db9847ff91be9c10a1788a7c74a6a (diff) | |
download | qmk_firmware-28fbf84cc5ff52f545011ea4198a6cc6d054f896.tar.gz qmk_firmware-28fbf84cc5ff52f545011ea4198a6cc6d054f896.zip |
Add standard definitions for ALGR and KC_ALGR (#4389)
* Add standard ALGR defition, remove (re)definitions from language files
* Use ALGR(kc) consistently in ALTGR(kc) aliases
* Non-Nordic keymaps should not use NO_ALGR
* Add standard KC_ALGR definition
* Update docs with ALGR and KC_ALGR
* Update SS_ALGR and ALGR_T aliases
Diffstat (limited to 'quantum/quantum.h')
-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 41c7d8351a..5920e4b139 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -197,6 +197,7 @@ extern uint32_t default_layer_state; #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 SS_ALGR(string) SS_RALT(string) #define SEND_STRING(str) send_string_P(PSTR(str)) extern const bool ascii_to_shift_lut[0x80]; |