diff options
author | James Young <18669334+noroadsleft@users.noreply.github.com> | 2022-10-23 06:33:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-23 14:33:25 +0100 |
commit | 64e84419106013d9977192fd2087c0bb8baae84a (patch) | |
tree | d85fa9434bd98c094d431754274403aed8d522dc /keyboards/han60/keymaps/default_ansi_tsangan | |
parent | 9248a04e17618a796532c62d6cf71427bce9133a (diff) |
Han60 Refactor (#18819)
* info.json: apply friendly formatting
* han60.h: add matrix diagram
* han60.h: tidy file
- remove trailing whitespace
- use four-space indent
* info.json: remove key overlaps from LAYOUT_all rendering
* rename LAYOUT_tsangan to LAYOUT_60_ansi_tsangan
* rename LAYOUT_tsangan_arrowkeys to LAYOUT_60_ansi_arrow_tsangan
* refactor LAYOUT_tsangan_iso into LAYOUT_60_iso_tsangan
Moves position `K2C` (Enter) to the home row.
* refactor LAYOUT_tsangan_iso_arrowkeys into LAYOUT_60_iso_arrow_tsangan
Moves position `K2C` (Enter) to the home row.
* refactor default keymap
- use four-space indent
- use QMK-native keycode aliases
- grid-align keycodes
* bugfix layout macros
* add reference keymaps
Diffstat (limited to 'keyboards/han60/keymaps/default_ansi_tsangan')
-rw-r--r-- | keyboards/han60/keymaps/default_ansi_tsangan/keymap.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/keyboards/han60/keymaps/default_ansi_tsangan/keymap.c b/keyboards/han60/keymaps/default_ansi_tsangan/keymap.c new file mode 100644 index 0000000000..88a438aee0 --- /dev/null +++ b/keyboards/han60/keymaps/default_ansi_tsangan/keymap.c @@ -0,0 +1,35 @@ +/* Copyright 2021 farhandsome + * + * 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/>. + */ +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + /* BASE */ + [0] = LAYOUT_60_ansi_tsangan( + QK_GESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, + KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, + KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, + KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, + KC_LCTL, KC_LCMD, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL + ), + /* FN */ + [1] = LAYOUT_60_ansi_tsangan( + QK_BOOT, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_UP, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, + _______, _______, _______, _______, _______, MO(1), _______ + ) +}; |