1
0
Fork 0

keymap_extras: Remove deprecated defines (#12949)

This commit is contained in:
Ryan 2021-07-06 09:05:11 +10:00 committed by GitHub
parent ca1b114297
commit 50d4dfd2e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
145 changed files with 649 additions and 1589 deletions

View file

@ -81,7 +81,7 @@ const uint16_t keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[_PSEUDO_US] = LAYOUT(
_______, _______, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, _______, _______,
_______, _______, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, JIS2US, _______,
_______, KC_Z, KC_X, KC_C, KC_V, KC_B, JP_ZHTG, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, JIS2US,
_______, KC_Z, KC_X, KC_C, KC_V, KC_B, JP_ZKHK, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, JIS2US,
_______, _______, P_LOWER, _______, P_RAISE, _______, _______, _______
),

View file

@ -40,10 +40,10 @@ const uint16_t PROGMEM keymap_jis2us[][2] = {
[KC_BSLS] = { JP_YEN, JP_PIPE }, /* ] and } -> \ and | */
[KC_NUHS] = { JP_YEN, JP_PIPE }, /* ] and } -> \ and | */
[KC_SCLN] = { JP_SCLN, JP_COLN }, /* ; and + -> ; and : */
[KC_QUOT] = { JP_QUOT, JP_DQT }, /* : and * -> ' and " */
[KC_QUOT] = { JP_QUOT, JP_DQUO }, /* : and * -> ' and " */
[KC_GRV] = { JP_GRV, JP_TILD }, /* Han/Zen -> ` and ~ */
[KC_COMM] = { JP_COMM, JP_LT }, /* , and < -> , and < */
[KC_DOT] = { JP_DOT, JP_GT }, /* . and > -> . and > */
[KC_COMM] = { JP_COMM, JP_LABK }, /* , and < -> , and < */
[KC_DOT] = { JP_DOT, JP_RABK }, /* . and > -> . and > */
[KC_SLSH] = { JP_SLSH, JP_QUES }, /* / and ? -> / and ? */
};
// clang-format on