summaryrefslogtreecommitdiff
path: root/keyboards/halfcliff
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2024-08-26 07:51:22 +1000
committerGitHub <noreply@github.com>2024-08-26 07:51:22 +1000
commit45dc2499dc369ce0ac7a4868a01ffb18fbaf0384 (patch)
treede553a634ad4140405db6e325ad7bfb814b9a3ce /keyboards/halfcliff
parent8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0 (diff)
Remove all via-enabled keymaps, including `via`. (#24322)
Diffstat (limited to 'keyboards/halfcliff')
-rw-r--r--keyboards/halfcliff/keymaps/via/keymap.c112
-rw-r--r--keyboards/halfcliff/keymaps/via/rules.mk1
2 files changed, 0 insertions, 113 deletions
diff --git a/keyboards/halfcliff/keymaps/via/keymap.c b/keyboards/halfcliff/keymaps/via/keymap.c
deleted file mode 100644
index 12b3919a63..0000000000
--- a/keyboards/halfcliff/keymaps/via/keymap.c
+++ /dev/null
@@ -1,112 +0,0 @@
1/* Copyright 2021 n2
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#include QMK_KEYBOARD_H
17#include "keymap_japanese.h"
18
19#define RAISE TL_LOWR
20#define LOWER TL_UPPR
21
22// Defines names for use in layer keycodes and the keymap
23enum layer_names {
24 _DEFAULT = 0,
25 _RAISE,
26 _LOWER,
27 _ADJUST
28/* _FN */
29};
30
31const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
32 /* DEFAULT
33 * ,--------------------------------------------------------------------------------------------------------------------------------------.
34 * |ZEN/HAN | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - | ^ | \ |
35 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
36 * | TAB | q | w | e | r | t | | y | u | i | o | p | @ | [ | BSPC |
37 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
38 * | CAPS | a | s | d | f | g | | h | j | k | l | ; | : | ] | ENT |
39 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
40 * | LSHIFT | z | x | c | v | b | | n | m | , | . | / | \ | UP | RSHIFT |
41 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
42 * | CTRL | LGUI | ALT | MUHEN | SPACE | SPACE | LOWER | RAISE | SPACE | HENKAN | KANA | APP | LEFT | DOWN | RIGHT |
43 * `--------------------------------------------------------------------------------------------------------------------------------------'
44 */
45 [_DEFAULT] = LAYOUT(
46 JP_ZKHK, KC_1, KC_2, KC_3, KC_4, KC_5, _______, KC_6, KC_7, KC_8, KC_9, KC_0, JP_MINS, JP_CIRC, JP_YEN,
47 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, _______, KC_Y, KC_U, KC_I, KC_O, KC_P, JP_AT , JP_LBRC, KC_BSPC,
48 KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, _______, KC_H, KC_J, KC_K, KC_L, KC_SCLN, JP_COLN, JP_RBRC, KC_ENT,
49 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, _______, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, JP_BSLS, KC_UP, KC_RSFT,
50 KC_LCTL, KC_LGUI, KC_LALT, JP_MHEN, KC_SPC, KC_SPC, TL_UPPR, TL_LOWR, KC_SPC, JP_HENK, JP_KANA, KC_APP, KC_LEFT, KC_DOWN, KC_RGHT
51 ),
52 /* RAISE
53 * ,--------------------------------------------------------------------------------------------------------------------------------------.
54 * | | | | | | | | | | | | | | | |
55 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
56 * | | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | | | |
57 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
58 * | | | | | | | | | | | | | | | |
59 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
60 * | | | | | | | | | | | | | | | |
61 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
62 * | | | | | | | | | | | | | | | |
63 * `--------------------------------------------------------------------------------------------------------------------------------------'
64 */
65 [_RAISE] = LAYOUT(
66 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
67 _______, KC_1, KC_2, KC_3, KC_4, KC_5, _______, KC_6, KC_7, KC_8, KC_9, KC_0, _______, _______, _______,
68 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
69 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
70 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
71 ),
72 /* LOWER
73 * ,--------------------------------------------------------------------------------------------------------------------------------------.
74 * | | | | | | |UG_TOGG | | | | | | | | |
75 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
76 * | | | | | | |UG_VALU | | | | | | | | |
77 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
78 * | | | | | | |UG_HUEU | | | | | | | | |
79 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
80 * | | | | | | |UG_SATU | | | | | | | | |
81 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
82 * | | | | | | | | | | | | | | | |
83 * `--------------------------------------------------------------------------------------------------------------------------------------'
84 */
85 [_LOWER] = LAYOUT(
86 _______, _______, _______, _______, _______, _______, UG_TOGG, _______, _______, _______, _______, _______, _______, _______, _______,
87 _______, _______, _______, _______, _______, _______, UG_VALU, _______, _______, _______, _______, _______, _______, _______, _______,
88 _______, _______, _______, _______, _______, _______, UG_HUEU, _______, _______, _______, _______, _______, _______, _______, _______,
89 _______, _______, _______, _______, _______, _______, UG_SATU, _______, _______, _______, _______, _______, _______, _______, _______,
90 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
91 ),
92 /* ADJUST
93 * ,--------------------------------------------------------------------------------------------------------------------------------------.
94 * | | | | | | | | | | | | | | | |
95 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
96 * | | | | | | | | | | | | | | | |
97 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
98 * | | | | | | | | | | | | | | | |
99 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
100 * | | | | | | | | | | | | | | | |
101 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
102 * | | | | | | | | | | | | | | | |
103 * `--------------------------------------------------------------------------------------------------------------------------------------'
104 */
105 [_ADJUST] = LAYOUT(
106 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
107 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
108 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
109 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
110 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
111 )
112};
diff --git a/keyboards/halfcliff/keymaps/via/rules.mk b/keyboards/halfcliff/keymaps/via/rules.mk
deleted file mode 100644
index 1e5b99807c..0000000000
--- a/keyboards/halfcliff/keymaps/via/rules.mk
+++ /dev/null
@@ -1 +0,0 @@
1VIA_ENABLE = yes