]> git.gir.st - tmk_keyboard.git/blame - keyboard/alps64/unimap_plain.c
remove experimental return, cleanup slash_question key
[tmk_keyboard.git] / keyboard / alps64 / unimap_plain.c
CommitLineData
6b34906b 1/*
2Copyright 2016 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17#include "unimap_trans.h"
18
19
530818b2 20#define AC_L1 ACTION_LAYER_TAP_KEY(1, KC_RGUI)
093bfd69 21
6b34906b 22
23#ifdef KEYMAP_SECTION_ENABLE
24const action_t actionmaps[][UNIMAP_ROWS][UNIMAP_COLS] __attribute__ ((section (".keymap.keymaps"))) = {
25#else
26const action_t actionmaps[][UNIMAP_ROWS][UNIMAP_COLS] PROGMEM = {
27#endif
093bfd69 28 /* 0:
29 * ,-----------------------------------------------------------.
30 * |` | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| #|Bsp|
31 * |-----------------------------------------------------------|
32 * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \ |
33 * |-----------------------------------------------------------|
34 * |Caps | A| S| D| F| G| H| J| K| L| ;| '|Enter |
35 * |-----------------------------------------------------------|
36 * |Shft| \| Z| X| C| V| B| N| M| ,| .| /|Shift |Esc|
37 * |-----------------------------------------------------------'
38 * |Ctrl|Gui |Alt | Space |App |Alt |Gui |Ctrl |
39 * `-----------------------------------------------------------'
6b34906b 40 */
093bfd69 41 [0] = UNIMAP_ALPS64( \
42 GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS,EQL, NUHS,BSPC, \
43 TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC,RBRC, BSLS, \
44 LCTL,A, S, D, F, G, H, J, K, L, SCLN,QUOT, ENT, \
45 LSFT,NUBS,Z, X, C, V, B, N, M, COMM,DOT, SLSH, RSFT,ESC, \
530818b2 46 LCTL,LGUI,LALT, SPC, APP, RALT,L1, RCTL),
093bfd69 47
48 [1] = UNIMAP_ALPS64( \
49 ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, INS, DEL, \
50 CAPS,TRNS,TRNS,TRNS,TRNS,TRNS,TRNS,TRNS,PSCR,SLCK,PAUS, UP, TRNS, BSPC, \
51 TRNS,VOLD,VOLU,MUTE,TRNS,TRNS,PAST,PSLS,HOME,PGUP,LEFT,RGHT, PENT, \
52 TRNS,TRNS,TRNS,TRNS,TRNS,TRNS,TRNS,PPLS,PMNS,END, PGDN,DOWN, TRNS,TRNS, \
53 TRNS,TRNS,TRNS, TRNS, TRNS,TRNS,TRNS,TRNS),
6b34906b 54};
Imprint / Impressum