summaryrefslogtreecommitdiff
path: root/keyboards/hhkb/ansi/keymaps/shela/keymap_jis2us.h
diff options
context:
space:
mode:
authorshela <shelaf@users.noreply.github.com>2020-08-05 12:19:27 +0900
committerGitHub <noreply@github.com>2020-08-04 20:19:27 -0700
commit62c0146419a3a51614e200cfbddef69d14fde6f4 (patch)
tree53cbbbb2597f6da425118ed301fd6d38b065f55f /keyboards/hhkb/ansi/keymaps/shela/keymap_jis2us.h
parent7b85962673e40633d9c36e4a36bedd80a601a0ac (diff)
[Keymap] Update my keymap (#9849)
Diffstat (limited to 'keyboards/hhkb/ansi/keymaps/shela/keymap_jis2us.h')
-rw-r--r--keyboards/hhkb/ansi/keymaps/shela/keymap_jis2us.h71
1 files changed, 44 insertions, 27 deletions
diff --git a/keyboards/hhkb/ansi/keymaps/shela/keymap_jis2us.h b/keyboards/hhkb/ansi/keymaps/shela/keymap_jis2us.h
index edc1e6d869..916a403eb6 100644
--- a/keyboards/hhkb/ansi/keymaps/shela/keymap_jis2us.h
+++ b/keyboards/hhkb/ansi/keymaps/shela/keymap_jis2us.h
@@ -1,32 +1,49 @@
-#ifndef LAYOUT_JIS2US_H
-#define LAYOUT_JIS2US_H
+/* Copyright 2020 shela
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
-/* keymap for convert from JIS to US */
+#pragma once
+
+#include "keymap_jp.h"
+
+// clang-format off
+/* Keymap for converting JIS to US */
const uint16_t PROGMEM keymap_jis2us[][2] = {
[KC_A ... KC_CAPS] = { 0x00, 0x00 }, /* default value */
- [KC_1] = { KC_1, KC_EXLM }, /* 1 and ! -> 1 and ! */
- [KC_2] = { KC_2, KC_LBRC }, /* 2 and " -> 2 and @ */
- [KC_3] = { KC_3, KC_HASH }, /* 3 and # -> 3 and # */
- [KC_4] = { KC_4, KC_DLR }, /* 4 and $ -> 4 and $ */
- [KC_5] = { KC_5, KC_PERC }, /* 5 and % -> 5 and % */
- [KC_6] = { KC_6, KC_EQL }, /* 6 and & -> 6 and ^ */
- [KC_7] = { KC_7, KC_CIRC }, /* 7 and ' -> 7 and & */
- [KC_8] = { KC_8, KC_DQT }, /* 8 and ( -> 8 and * */
- [KC_9] = { KC_9, KC_ASTR }, /* 9 and ) -> 9 and ( */
- [KC_0] = { KC_0, KC_LPRN }, /* 0 and (no assign) -> 0 and ) */
- [KC_MINS] = { KC_MINS, S(KC_RO) }, /* - and = -> - and _ */
- [KC_EQL] = { KC_UNDS, KC_COLN }, /* ^ and ~ -> = and + */
- [KC_LBRC] = { KC_RBRC, KC_RCBR }, /* @ and ` -> [ and { */
- [KC_RBRC] = { KC_BSLS, KC_PIPE }, /* [ and { -> ] and } */
- [KC_BSLS] = { KC_JYEN, S(KC_JYEN) }, /* ] and } -> / and | */
- [KC_NUHS] = { KC_NUHS, S(KC_NUHS) }, /* (no assign) */
- [KC_SCLN] = { KC_SCLN, KC_QUOT }, /* ; and + -> ; and : */
- [KC_QUOT] = { KC_AMPR, KC_AT }, /* : and * -> ' and " */
- [KC_GRV] = { KC_LCBR, KC_PLUS }, /* (no assign) -> ` and ~ */
- [KC_COMM] = { KC_COMM, KC_LT }, /* , and < -> , and < */
- [KC_DOT] = { KC_DOT, KC_GT }, /* . and > -> . and > */
- [KC_SLSH] = { KC_SLSH, KC_QUES }, /* / and ? -> / and ? */
+ [KC_1] = { KC_1, JP_EXLM }, /* 1 and ! -> 1 and ! */
+ [KC_2] = { KC_2, JP_AT }, /* 2 and " -> 2 and @ */
+ [KC_3] = { KC_3, JP_HASH }, /* 3 and # -> 3 and # */
+ [KC_4] = { KC_4, JP_DLR }, /* 4 and $ -> 4 and $ */
+ [KC_5] = { KC_5, JP_PERC }, /* 5 and % -> 5 and % */
+ [KC_6] = { KC_6, JP_CIRC }, /* 6 and & -> 6 and ^ */
+ [KC_7] = { KC_7, JP_AMPR }, /* 7 and ' -> 7 and & */
+ [KC_8] = { KC_8, JP_ASTR }, /* 8 and ( -> 8 and * */
+ [KC_9] = { KC_9, JP_LPRN }, /* 9 and ) -> 9 and ( */
+ [KC_0] = { KC_0, JP_RPRN }, /* 0 -> 0 and ) */
+ [KC_MINS] = { JP_MINS, JP_UNDS }, /* - and = -> - and _ */
+ [KC_EQL] = { JP_EQL, JP_PLUS }, /* ^ and ~ -> = and + */
+ [KC_LBRC] = { JP_LBRC, JP_LCBR }, /* @ and ` -> [ and { */
+ [KC_RBRC] = { JP_RBRC, JP_RCBR }, /* [ and { -> ] and } */
+ [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_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_SLSH] = { JP_SLSH, JP_QUES }, /* / and ? -> / and ? */
};
-
-#endif
+// clang-format on