Ver código fonte

Add SS_RALT for AltGR usage in macros

Drashna Jael're 7 anos atrás
pai
commit
3f1d147529
2 arquivos alterados com 2 adições e 0 exclusões
  1. 1 0
      docs/feature_macros.md
  2. 1 0
      quantum/quantum.h

+ 1 - 0
docs/feature_macros.md

@@ -97,6 +97,7 @@ There's also a couple of mod shortcuts you can use:
 * `SS_LGUI(string)`
 * `SS_LGUI(string)`
 * `SS_LALT(string)`
 * `SS_LALT(string)`
 * `SS_LSFT(string)`
 * `SS_LSFT(string)`
+* `SS_RALT(string)`
 
 
 These press the respective modifier, send the supplied string and then release the modifier.
 These press the respective modifier, send the supplied string and then release the modifier.
 They can be used like this:
 They can be used like this:

+ 1 - 0
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_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_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_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))
 #define SEND_STRING(str) send_string_P(PSTR(str))
 extern const bool ascii_to_shift_lut[0x80];
 extern const bool ascii_to_shift_lut[0x80];