diff options
| author | Ryan <fauxpark@gmail.com> | 2023-06-02 02:25:08 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-01 17:25:08 +0100 |
| commit | a4ed6ad0f5ccbbf1b497dc03ba64820bdaaa8957 (patch) | |
| tree | 72ff0bd7c826424771d92709abab5fe43e7bcda1 /users | |
| parent | 45c9bc4e551fe8014d9f0674b95b3422de16408f (diff) | |
Unicodemap keycodes rename (#21092)
Diffstat (limited to 'users')
| -rw-r--r-- | users/konstantin/unicode.h | 2 | ||||
| -rw-r--r-- | users/kuchosauronad0/unicode.h | 1 | ||||
| -rw-r--r-- | users/kuchosauronad0/wrappers.h | 12 | ||||
| -rw-r--r-- | users/ridingqwerty/unicode.h | 116 | ||||
| -rw-r--r-- | users/rmeli/keyrecords/unicode.h | 20 | ||||
| -rw-r--r-- | users/rupa/wrappers.h | 24 | ||||
| -rw-r--r-- | users/spidey3/spidey3_unicode.h | 4 | ||||
| -rw-r--r-- | users/turbomech/turbomech.c | 3 | ||||
| -rw-r--r-- | users/yet-another-developer/unicode.h | 1 | ||||
| -rw-r--r-- | users/yet-another-developer/wrappers.h | 12 |
10 files changed, 96 insertions, 99 deletions
diff --git a/users/konstantin/unicode.h b/users/konstantin/unicode.h index 82caea7c9a..472f48a942 100644 --- a/users/konstantin/unicode.h +++ b/users/konstantin/unicode.h | |||
| @@ -31,7 +31,7 @@ | |||
| 31 | 31 | ||
| 32 | #define UCM_NAME(name, code) UCM_ ## name, | 32 | #define UCM_NAME(name, code) UCM_ ## name, |
| 33 | #define UCM_ENTRY(name, code) [UCM_ ## name] = code, | 33 | #define UCM_ENTRY(name, code) [UCM_ ## name] = code, |
| 34 | #define UCM_KEYCODE(name, code) name = X(UCM_ ## name), | 34 | #define UCM_KEYCODE(name, code) name = UM(UCM_ ## name), |
| 35 | 35 | ||
| 36 | #if defined(UNICODE_ENABLE) | 36 | #if defined(UNICODE_ENABLE) |
| 37 | enum unicode_keycodes { | 37 | enum unicode_keycodes { |
diff --git a/users/kuchosauronad0/unicode.h b/users/kuchosauronad0/unicode.h index 9ff523baad..340b4cf94b 100644 --- a/users/kuchosauronad0/unicode.h +++ b/users/kuchosauronad0/unicode.h | |||
| @@ -2,7 +2,6 @@ | |||
| 2 | 2 | ||
| 3 | #include "quantum.h" | 3 | #include "quantum.h" |
| 4 | 4 | ||
| 5 | /* use X(n) to call the */ | ||
| 6 | #ifdef UNICODEMAP_ENABLE | 5 | #ifdef UNICODEMAP_ENABLE |
| 7 | enum unicode_name { | 6 | enum unicode_name { |
| 8 | OKOK, // | 7 | OKOK, // |
diff --git a/users/kuchosauronad0/wrappers.h b/users/kuchosauronad0/wrappers.h index 543586e009..a17e4178ff 100644 --- a/users/kuchosauronad0/wrappers.h +++ b/users/kuchosauronad0/wrappers.h | |||
| @@ -152,13 +152,13 @@ NOTE: These are all the same length. If you do a search/replace | |||
| 152 | #endif | 152 | #endif |
| 153 | 153 | ||
| 154 | #ifdef UNICODEMAP_ENABLE | 154 | #ifdef UNICODEMAP_ENABLE |
| 155 | # define _______________UNICODE_L1__________________ X(SMRK), X(THINK), X(CLOWN), X(HUNDR), X(BANG) | 155 | # define _______________UNICODE_L1__________________ UM(SMRK), UM(THINK), UM(CLOWN), UM(HUNDR), UM(BANG) |
| 156 | # define _______________UNICODE_L2__________________ X(GRIN), X(MONKEY), X(OKOK), X(EGGPL), X(LIT) | 156 | # define _______________UNICODE_L2__________________ UM(GRIN), UM(MONKEY), UM(OKOK), UM(EGGPL), UM(LIT) |
| 157 | # define _______________UNICODE_L3__________________ X(WEARY), X(UNAMU), X(EFFU), X(MONOCL), X(IRONY) | 157 | # define _______________UNICODE_L3__________________ UM(WEARY), UM(UNAMU), UM(EFFU), UM(MONOCL), UM(IRONY) |
| 158 | 158 | ||
| 159 | # define _______________UNICODE_R1__________________ X(DRUG0), X(THUP), X(INUP), X(DIZZY), X(COOL) | 159 | # define _______________UNICODE_R1__________________ UM(DRUG0), UM(THUP), UM(INUP), UM(DIZZY), UM(COOL) |
| 160 | # define _______________UNICODE_R2__________________ X(FIST0), X(FIST2), X(FIST3), X(FIST1), X(OKOK) | 160 | # define _______________UNICODE_R2__________________ UM(FIST0), UM(FIST2), UM(FIST3), UM(FIST1), UM(OKOK) |
| 161 | # define _______________UNICODE_R3__________________ X(MNDBLWN), X(THDN), X(SPOCK), X(HOLE), X(DASH) | 161 | # define _______________UNICODE_R3__________________ UM(MNDBLWN), UM(THDN), UM(SPOCK), UM(HOLE), UM(DASH) |
| 162 | #endif | 162 | #endif |
| 163 | 163 | ||
| 164 | #define ________________NUMBER_LEFT________________ KC_1, KC_2, KC_3, KC_4, KC_5 | 164 | #define ________________NUMBER_LEFT________________ KC_1, KC_2, KC_3, KC_4, KC_5 |
diff --git a/users/ridingqwerty/unicode.h b/users/ridingqwerty/unicode.h index de8d1593b4..08b6f4fb8d 100644 --- a/users/ridingqwerty/unicode.h +++ b/users/ridingqwerty/unicode.h | |||
| @@ -216,7 +216,7 @@ | |||
| 216 | 216 | ||
| 217 | #define UCM_NAME(name, code) UCM_ ## name, // UCM_LALP, | 217 | #define UCM_NAME(name, code) UCM_ ## name, // UCM_LALP, |
| 218 | #define UCM_ENTRY(name, code) [UCM_ ## name] = code, // [UCM_LALP] = 0x03B1, | 218 | #define UCM_ENTRY(name, code) [UCM_ ## name] = code, // [UCM_LALP] = 0x03B1, |
| 219 | #define UCM_KEYCODE(name, code) name = X(UCM_ ## name), // LALP = X(UCM_LALP) | 219 | #define UCM_KEYCODE(name, code) name = UM(UCM_ ## name), // LALP = UM(UCM_LALP) |
| 220 | 220 | ||
| 221 | #if defined(UNICODE_ENABLE) | 221 | #if defined(UNICODE_ENABLE) |
| 222 | enum unicode_keycodes { | 222 | enum unicode_keycodes { |
| @@ -235,61 +235,61 @@ enum unicode_keycodes { | |||
| 235 | #endif | 235 | #endif |
| 236 | 236 | ||
| 237 | 237 | ||
| 238 | #define ALPHA XP(LALP, UALP) | 238 | #define ALPHA UP(LALP, UALP) |
| 239 | #define BETA XP(LBET, UBET) | 239 | #define BETA UP(LBET, UBET) |
| 240 | #define GAMMA XP(LGAM, UGAM) | 240 | #define GAMMA UP(LGAM, UGAM) |
| 241 | #define DELTA XP(LDEL, UDEL) | 241 | #define DELTA UP(LDEL, UDEL) |
| 242 | #define EPSLN XP(LEPS, UEPS) | 242 | #define EPSLN UP(LEPS, UEPS) |
| 243 | #define ZETA XP(LZET, UZET) | 243 | #define ZETA UP(LZET, UZET) |
| 244 | #define ETA XP(LETA, UETA) | 244 | #define ETA UP(LETA, UETA) |
| 245 | #define THETA XP(LTHE, UTHE) | 245 | #define THETA UP(LTHE, UTHE) |
| 246 | #define IOTA XP(LIOT, UIOT) | 246 | #define IOTA UP(LIOT, UIOT) |
| 247 | #define KAPPA XP(LKAP, UKAP) | 247 | #define KAPPA UP(LKAP, UKAP) |
| 248 | #define LAMBD XP(LLAM, ULAM) | 248 | #define LAMBD UP(LLAM, ULAM) |
| 249 | #define GMU XP(LMU, UMU) | 249 | #define GMU UP(LMU, UMU) |
| 250 | #define NU XP(LNU, UNU) | 250 | #define NU UP(LNU, UNU) |
| 251 | #define XI XP(LXI, UXI) | 251 | #define XI UP(LXI, UXI) |
| 252 | #define OMCRN XP(LOMI, UOMI) | 252 | #define OMCRN UP(LOMI, UOMI) |
| 253 | #define PI XP(LPI, UPI) | 253 | #define PI UP(LPI, UPI) |
| 254 | #define RHO XP(LRHO, URHO) | 254 | #define RHO UP(LRHO, URHO) |
| 255 | #define SIGMA XP(LSIG, USIG) | 255 | #define SIGMA UP(LSIG, USIG) |
| 256 | #define TAU XP(LTAU, UTAU) | 256 | #define TAU UP(LTAU, UTAU) |
| 257 | #define UPSLN XP(LUPS, UUPS) | 257 | #define UPSLN UP(LUPS, UUPS) |
| 258 | #define PHI XP(LPHI, UPHI) | 258 | #define PHI UP(LPHI, UPHI) |
| 259 | #define CHI XP(LCHI, UCHI) | 259 | #define CHI UP(LCHI, UCHI) |
| 260 | #define PSI XP(LPSI, UPSI) | 260 | #define PSI UP(LPSI, UPSI) |
| 261 | #define OMEGA XP(LOME, UOME) | 261 | #define OMEGA UP(LOME, UOME) |
| 262 | 262 | ||
| 263 | #define AH XP(LAH, UAH) | 263 | #define AH UP(LAH, UAH) |
| 264 | #define BE XP(LBE, UBE) | 264 | #define BE UP(LBE, UBE) |
| 265 | #define VE XP(LVE, UVE) | 265 | #define VE UP(LVE, UVE) |
| 266 | #define GHE XP(LGHE, UGHE) | 266 | #define GHE UP(LGHE, UGHE) |
| 267 | #define DE XP(LDE, UDE) | 267 | #define DE UP(LDE, UDE) |
| 268 | #define IE XP(LIE, UIE) | 268 | #define IE UP(LIE, UIE) |
| 269 | #define IO XP(LIO, UIO) | 269 | #define IO UP(LIO, UIO) |
| 270 | #define ZHE XP(LZHE, UZHE) | 270 | #define ZHE UP(LZHE, UZHE) |
| 271 | #define ZE XP(LZE, UZE) | 271 | #define ZE UP(LZE, UZE) |
| 272 | #define IH XP(LIH, UIH) | 272 | #define IH UP(LIH, UIH) |
| 273 | #define SIH XP(LSIH, USIH) | 273 | #define SIH UP(LSIH, USIH) |
| 274 | #define KA XP(LKA, UKA) | 274 | #define KA UP(LKA, UKA) |
| 275 | #define EL XP(LEL, UEL) | 275 | #define EL UP(LEL, UEL) |
| 276 | #define EM XP(LEM, UEM) | 276 | #define EM UP(LEM, UEM) |
| 277 | #define EN XP(LEN, UEN) | 277 | #define EN UP(LEN, UEN) |
| 278 | #define OH XP(LOH, UOH) | 278 | #define OH UP(LOH, UOH) |
| 279 | #define PE XP(LPE, UPE) | 279 | #define PE UP(LPE, UPE) |
| 280 | #define ER XP(LER, UER) | 280 | #define ER UP(LER, UER) |
| 281 | #define ES XP(LES, UES) | 281 | #define ES UP(LES, UES) |
| 282 | #define TE XP(LTE, UTE) | 282 | #define TE UP(LTE, UTE) |
| 283 | #define UU XP(LUU, UUU) | 283 | #define UU UP(LUU, UUU) |
| 284 | #define EF XP(LEF, UEF) | 284 | #define EF UP(LEF, UEF) |
| 285 | #define HA XP(LHA, UHA) | 285 | #define HA UP(LHA, UHA) |
| 286 | #define TSE XP(LTSE, UTSE) | 286 | #define TSE UP(LTSE, UTSE) |
| 287 | #define CHE XP(LCHE, UCHE) | 287 | #define CHE UP(LCHE, UCHE) |
| 288 | #define SHA XP(LSHA, USHA) | 288 | #define SHA UP(LSHA, USHA) |
| 289 | #define SCHA XP(LSCHA, USCHA) | 289 | #define SCHA UP(LSCHA, USCHA) |
| 290 | #define HARD XP(LHARD, UHARD) | 290 | #define HARD UP(LHARD, UHARD) |
| 291 | #define YERU XP(LYERU, UYERU) | 291 | #define YERU UP(LYERU, UYERU) |
| 292 | #define SOFT XP(LSOFT, USOFT) | 292 | #define SOFT UP(LSOFT, USOFT) |
| 293 | #define EH XP(LEH, UEH) | 293 | #define EH UP(LEH, UEH) |
| 294 | #define YU XP(LYU, UYU) | 294 | #define YU UP(LYU, UYU) |
| 295 | #define YA XP(LYA, UYA) | 295 | #define YA UP(LYA, UYA) |
diff --git a/users/rmeli/keyrecords/unicode.h b/users/rmeli/keyrecords/unicode.h index c3ba96d5b6..63c355415e 100644 --- a/users/rmeli/keyrecords/unicode.h +++ b/users/rmeli/keyrecords/unicode.h | |||
| @@ -74,13 +74,13 @@ const uint32_t unicode_map[] PROGMEM = { | |||
| 74 | }; | 74 | }; |
| 75 | 75 | ||
| 76 | // Accents | 76 | // Accents |
| 77 | #define A_GRV XP(aGRV, AGRV) | 77 | #define A_GRV UP(aGRV, AGRV) |
| 78 | #define A_UML XP(aUML, AUML) | 78 | #define A_UML UP(aUML, AUML) |
| 79 | #define E_GRV XP(eGRV, EGRV) | 79 | #define E_GRV UP(eGRV, EGRV) |
| 80 | #define E_ACT XP(eACT, EACT) | 80 | #define E_ACT UP(eACT, EACT) |
| 81 | #define I_GRV XP(iGRV, IGRV) | 81 | #define I_GRV UP(iGRV, IGRV) |
| 82 | #define I_CIR XP(iCIR, ICIR) | 82 | #define I_CIR UP(iCIR, ICIR) |
| 83 | #define O_GRV XP(oGRV, OGRV) | 83 | #define O_GRV UP(oGRV, OGRV) |
| 84 | #define O_UML XP(oUML, OUML) | 84 | #define O_UML UP(oUML, OUML) |
| 85 | #define U_GRV XP(uGRV, UGRV) | 85 | #define U_GRV UP(uGRV, UGRV) |
| 86 | #define U_UML XP(uUML, UUML) | 86 | #define U_UML UP(uUML, UUML) |
diff --git a/users/rupa/wrappers.h b/users/rupa/wrappers.h index dfc00b5120..df32ef39ab 100644 --- a/users/rupa/wrappers.h +++ b/users/rupa/wrappers.h | |||
| @@ -28,14 +28,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 28 | #define G_LWR LT(_LOWER, KC_G) | 28 | #define G_LWR LT(_LOWER, KC_G) |
| 29 | 29 | ||
| 30 | #if defined(UNICODEMAP_ENABLE) | 30 | #if defined(UNICODEMAP_ENABLE) |
| 31 | # define CSHAPES XP(CCIR,CKEY) | 31 | # define CSHAPES UP(CCIR,CKEY) |
| 32 | # define CUIDADO XP(CUI,HAS) | 32 | # define CUIDADO UP(CUI,HAS) |
| 33 | # define NOPENAH XP(NOPE,STOP) | 33 | # define NOPENAH UP(NOPE,STOP) |
| 34 | # define MUSIC_A XP(M4,M8) | 34 | # define MUSIC_A UP(M4,M8) |
| 35 | # define MUSIC_B XP(M8B,M16) | 35 | # define MUSIC_B UP(M8B,M16) |
| 36 | # define SMILE XP(SMB,SMW) | 36 | # define SMILE UP(SMB,SMW) |
| 37 | # define STARS XP(STB,STW) | 37 | # define STARS UP(STB,STW) |
| 38 | # define YEPYEP XP(CHEK,HUN) | 38 | # define YEPYEP UP(CHEK,HUN) |
| 39 | #endif | 39 | #endif |
| 40 | 40 | ||
| 41 | /* _QWERTY | 41 | /* _QWERTY |
| @@ -70,10 +70,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 70 | * │RCtl│RAlt│RGui│ FLIP │ │ │ │M← │M↓ │M→ │ | 70 | * │RCtl│RAlt│RGui│ FLIP │ │ │ │M← │M↓ │M→ │ |
| 71 | * └────┴────┴────┴────────────────────────┴───┴───┴───┴───┴───┴───┘ | 71 | * └────┴────┴────┴────────────────────────┴───┴───┴───┴───┴───┴───┘ |
| 72 | */ | 72 | */ |
| 73 | #define ____65_RAISE_______________ROW1 KC_GRV, X(IBNG), X(IRNY), _______, X(CENT), _______, _______, _______, STARS, _______, SMILE, X(NEG), CSHAPES, KC_DEL, KC_HOME | 73 | #define ____65_RAISE_______________ROW1 KC_GRV, UM(IBNG), UM(IRNY), _______, UM(CENT), _______, _______, _______, STARS, _______, SMILE, UM(NEG), CSHAPES, KC_DEL, KC_HOME |
| 74 | #define ____65_RAISE_______________ROW2 _______, _______, WAT, X(LEXI), RUPA, TADA, YUNO, _______, X(LELM), X(OM), _______, MUSIC_A, MUSIC_B, _______, KC_INS | 74 | #define ____65_RAISE_______________ROW2 _______, _______, WAT, UM(LEXI), RUPA, TADA, YUNO, _______, UM(LELM), UM(OM), _______, MUSIC_A, MUSIC_B, _______, KC_INS |
| 75 | #define ____65_RAISE_______________ROW3 _______, X(LALL), X(EFF), DICE, FART, _______, HUGS, JOY, KISS, LOD, _______, NOPENAH, YEPYEP, KC_END | 75 | #define ____65_RAISE_______________ROW3 _______, UM(LALL), UM(EFF), DICE, FART, _______, HUGS, JOY, KISS, LOD, _______, NOPENAH, YEPYEP, KC_END |
| 76 | #define ____65_RAISE_______________ROW4 OS_RSFT, CUIDADO, X(ECKS), CATS, DOMO, BUGS, X(NUM), MUSIC, DANCE, X(LPRO), SHRUG, KC_BTN1, KC_MS_U, KC_BTN2 | 76 | #define ____65_RAISE_______________ROW4 OS_RSFT, CUIDADO, UM(ECKS), CATS, DOMO, BUGS, UM(NUM), MUSIC, DANCE, UM(LPRO), SHRUG, KC_BTN1, KC_MS_U, KC_BTN2 |
| 77 | #define ____65_RAISE_______________ROW5 OS_RCTL, OS_RALT, OS_RGUI, FLIP, _______, _______, _______, KC_MS_L, KC_MS_D, KC_MS_R | 77 | #define ____65_RAISE_______________ROW5 OS_RCTL, OS_RALT, OS_RGUI, FLIP, _______, _______, _______, KC_MS_L, KC_MS_D, KC_MS_R |
| 78 | 78 | ||
| 79 | /* _LOWER | 79 | /* _LOWER |
diff --git a/users/spidey3/spidey3_unicode.h b/users/spidey3/spidey3_unicode.h index ee8e00056c..4a3657fdfd 100644 --- a/users/spidey3/spidey3_unicode.h +++ b/users/spidey3/spidey3_unicode.h | |||
| @@ -25,7 +25,7 @@ enum unicode_names { | |||
| 25 | SURPRISE, | 25 | SURPRISE, |
| 26 | }; | 26 | }; |
| 27 | 27 | ||
| 28 | # define X_BUL (XP(BUL1, BUL2)) | 28 | # define X_BUL (UP(BUL1, BUL2)) |
| 29 | # define X_DASH (XP(EMDASH, ENDASH)) | 29 | # define X_DASH (UP(EMDASH, ENDASH)) |
| 30 | 30 | ||
| 31 | #endif | 31 | #endif |
diff --git a/users/turbomech/turbomech.c b/users/turbomech/turbomech.c index 892db1b927..75796fb8fb 100644 --- a/users/turbomech/turbomech.c +++ b/users/turbomech/turbomech.c | |||
| @@ -101,8 +101,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 101 | if (record->event.pressed) { | 101 | if (record->event.pressed) { |
| 102 | register_code(KC_LPRN); | 102 | register_code(KC_LPRN); |
| 103 | unregister_code(KC_LPRN); | 103 | unregister_code(KC_LPRN); |
| 104 | register_code(X(0x00B0)); | 104 | register_unicode(0x00B0); |
| 105 | unregister_code(X(0x00B0)); | ||
| 106 | 105 | ||
| 107 | UC(0x256F); | 106 | UC(0x256F); |
| 108 | PROCESS_UNICODE(UC(0x00B0)); | 107 | PROCESS_UNICODE(UC(0x00B0)); |
diff --git a/users/yet-another-developer/unicode.h b/users/yet-another-developer/unicode.h index 9ff523baad..340b4cf94b 100644 --- a/users/yet-another-developer/unicode.h +++ b/users/yet-another-developer/unicode.h | |||
| @@ -2,7 +2,6 @@ | |||
| 2 | 2 | ||
| 3 | #include "quantum.h" | 3 | #include "quantum.h" |
| 4 | 4 | ||
| 5 | /* use X(n) to call the */ | ||
| 6 | #ifdef UNICODEMAP_ENABLE | 5 | #ifdef UNICODEMAP_ENABLE |
| 7 | enum unicode_name { | 6 | enum unicode_name { |
| 8 | OKOK, // | 7 | OKOK, // |
diff --git a/users/yet-another-developer/wrappers.h b/users/yet-another-developer/wrappers.h index cd21032a4e..776da0c77e 100644 --- a/users/yet-another-developer/wrappers.h +++ b/users/yet-another-developer/wrappers.h | |||
| @@ -118,13 +118,13 @@ NOTE: These are all the same length. If you do a search/replace | |||
| 118 | #endif | 118 | #endif |
| 119 | 119 | ||
| 120 | #ifdef UNICODEMAP_ENABLE | 120 | #ifdef UNICODEMAP_ENABLE |
| 121 | #define _______________UNICODE_L1__________________ X(SMRK), X(THINK), X(CLOWN), X(HUNDR), X(BANG) | 121 | #define _______________UNICODE_L1__________________ UM(SMRK), UM(THINK), UM(CLOWN), UM(HUNDR), UM(BANG) |
| 122 | #define _______________UNICODE_L2__________________ X(GRIN), X(MONKEY), X(OKOK), X(EGGPL), X(LIT) | 122 | #define _______________UNICODE_L2__________________ UM(GRIN), UM(MONKEY), UM(OKOK), UM(EGGPL), UM(LIT) |
| 123 | #define _______________UNICODE_L3__________________ X(WEARY), X(UNAMU), X(EFFU), X(MONOCL), X(IRONY) | 123 | #define _______________UNICODE_L3__________________ UM(WEARY), UM(UNAMU), UM(EFFU), UM(MONOCL), UM(IRONY) |
| 124 | 124 | ||
| 125 | #define _______________UNICODE_R1__________________ X(DRUG0), X(THUP), X(INUP), X(DIZZY), X(COOL) | 125 | #define _______________UNICODE_R1__________________ UM(DRUG0), UM(THUP), UM(INUP), UM(DIZZY), UM(COOL) |
| 126 | #define _______________UNICODE_R2__________________ X(FIST0), X(FIST2),X(FIST3),X(FIST1), X(OKOK) | 126 | #define _______________UNICODE_R2__________________ UM(FIST0), UM(FIST2),UM(FIST3),UM(FIST1), UM(OKOK) |
| 127 | #define _______________UNICODE_R3__________________ X(MNDBLWN), X(THDN), X(SPOCK),X(HOLE), X(DASH) | 127 | #define _______________UNICODE_R3__________________ UM(MNDBLWN), UM(THDN), UM(SPOCK),UM(HOLE), UM(DASH) |
| 128 | #endif | 128 | #endif |
| 129 | 129 | ||
| 130 | #define ________________NUMBER_LEFT________________ KC_1, KC_2, KC_3, KC_4, KC_5 | 130 | #define ________________NUMBER_LEFT________________ KC_1, KC_2, KC_3, KC_4, KC_5 |
