]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/chimera_ergo/keymaps/default/keymap.c
Add user-overridable callback for cancelling UCIS input (#5564)
[qmk_firmware.git] / keyboards / chimera_ergo / keymaps / default / keymap.c
1 // this is the style you want to emulate.
2 // This is the canonical layout file for the Quantum project. If you want to add another keyboard,
3
4 #include QMK_KEYBOARD_H
5
6 // Each layer gets a name for readability, which is then used in the keymap matrix below.
7 // The underscores don't mean anything - you can have a layer called STUFF or any other name.
8 // Layer names don't all need to be of the same length, obviously, and you can also skip them
9 // entirely and just use numbers.
10 enum chimera_ergo_layers
11 {
12   _QWERTY,
13   _CAPS,
14   _NUMPAD,
15   _SYMBOLS,
16   _MACROS,
17   _NAV
18 };
19
20 #define SC_NMPD TG(_NUMPAD)
21 #define SC_SYMB TG(_SYMBOLS)
22 #define SC_SPFN LT(_NAV,KC_EQL)
23 #define SC_SCTL MT(MOD_LCTL, KC_LBRC)
24 #define SC_SCTR MT(MOD_LCTL, KC_RBRC)
25 #define SC_SPLT MT(MOD_LALT, KC_MINS)
26 #define SC_SPRT MT(MOD_LALT, KC_1)
27 #define SC_GBRC MT(MOD_RGUI, KC_RBRC)
28 #define SC_MESC LT(_MACROS, KC_ESC)
29 #define SC_INCL M(0)
30 #define SC_PULL M(1)
31 #define SC_PUSH M(2)
32 #define SC_SCAP M(3)
33 #define SC_SCOF M(4)
34 #define SC_CAD LALT(LCTL(KC_DEL))
35
36 #define LONGPRESS_DELAY 150
37 //#define LAYER_TOGGLE_DELAY 300
38
39 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
40
41   [_QWERTY] = LAYOUT(
42      KC_LBRC, KC_1,    SC_SCTL, SC_SPLT, SC_SPFN, KC_5,          KC_6,    SC_GBRC, SC_SPRT, SC_SCTR, KC_0,    KC_RBRC,
43      SC_MESC, KC_Q,    KC_W,    KC_E,    KC_R,    KC_T,          KC_Y,    KC_U,    KC_I,    KC_O,    KC_P,    KC_QUOT,
44      KC_TAB,  KC_A,    KC_S,    KC_D,    KC_F,    KC_G,          KC_H,    KC_J,    KC_K,    KC_L,    KC_SCLN, KC_ENT,
45      KC_LSPO, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,          KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_RSPC,
46                                          SC_NMPD, KC_BSPC,       KC_SPC,  SC_SYMB
47   ),
48
49   [_CAPS] = LAYOUT(
50      _______, KC_UNDS, _______, _______, _______, _______,       _______, _______, _______, _______, _______, _______,
51      _______, _______, _______, _______, _______, _______,       _______, _______, _______, _______, _______, _______,
52      _______, _______, _______, _______, _______, _______,       _______, _______, _______, _______, KC_COLN, _______,
53      SC_SCOF, _______, _______, _______, _______, _______,       _______, _______, _______, _______, _______, SC_SCOF,
54                                          _______, _______,       _______, _______
55   ),
56
57   [_NUMPAD] = LAYOUT(
58      _______, _______, _______, _______, _______, _______,       _______, _______, _______, _______, KC_MINS, _______,
59      _______, _______, KC_COLN, _______, _______, _______,       _______, KC_7,    KC_8,    KC_9,    KC_ASTR, _______,
60      _______, _______, KC_DOT , _______, _______, _______,       _______, KC_4,    KC_5,    KC_6,    KC_PLUS, _______,
61      _______, _______, _______, _______, _______, _______,       _______, KC_1,    KC_2,    KC_3,    KC_SLSH, _______,
62                                          _______, _______,       _______, KC_0
63   ),
64
65   [_SYMBOLS] = LAYOUT(
66      _______, _______, _______, _______, _______, _______,       _______, _______, _______, _______, _______, _______,
67      _______, KC_EXLM, KC_AT,   KC_HASH, KC_DLR,  KC_PERC,       KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSLS,
68      KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,         KC_TILD, KC_EQL,  KC_UNDS, KC_LCBR, KC_RCBR, _______,
69      KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,        KC_GRV,  KC_PLUS, KC_MINS, KC_LBRC, KC_RBRC, _______,
70                                          KC_PIPE, _______,       _______, _______
71   ),
72
73   [_MACROS] = LAYOUT(
74      _______, _______, _______, _______, _______, _______,       _______, _______, _______, _______, _______, _______,
75      _______, _______, _______, _______, _______, _______,       _______, _______, SC_INCL, _______, _______, _______,
76      _______, _______, _______, SC_CAD,  _______, _______,       _______, _______, _______, _______, _______, _______,
77      SC_SCAP, _______, _______, _______, _______, _______,       _______, _______, SC_PULL, SC_PUSH, _______, _______,
78                                          _______, _______,       _______, _______
79   ),
80
81   [_NAV] = LAYOUT(
82      _______, _______, _______, _______, _______, _______,       _______, _______, _______, _______, _______, _______,
83      _______, _______, _______, _______, _______, _______,       _______, KC_PGUP, KC_UP,   KC_PGDN, KC_PSCR, _______,
84      _______, _______, _______, _______, _______, _______,       _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______,
85      _______, _______, _______, _______, _______, _______,       _______, _______, _______, _______, _______, _______,
86                                          _______, KC_DEL,        _______, _______
87   ),
88
89 };
90
91 const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
92 {
93   switch(id) {
94     /* include some kind of library or header */
95     case 0:
96       if (record->event.pressed) {
97         SEND_STRING("#include <>");
98         return MACRO( T(LEFT), END);
99       }
100       break;
101     case 1:
102       if (record->event.pressed) {
103         SEND_STRING("git pull");
104         return MACRO( T(ENT), END );
105       }
106       break;
107     case 2:
108       if (record->event.pressed){
109         SEND_STRING("git push");
110         return MACRO( T(ENT), END );
111       }
112       break;
113     case 3:
114       if (record->event.pressed){
115         layer_on(_CAPS);
116         register_code(KC_CAPSLOCK);
117         unregister_code(KC_CAPSLOCK);
118       }
119       break;
120     case 4:
121       if (record->event.pressed){
122         layer_off(_CAPS);
123         register_code(KC_CAPSLOCK);
124         unregister_code(KC_CAPSLOCK);
125       }
126       break;
127   }
128   return MACRO_NONE;
129 };
130
131
132 void matrix_scan_user(void) {
133     uint8_t layer = biton32(layer_state);
134
135     switch (layer) {
136       case _QWERTY:
137           set_led_green;
138           break;
139         case _CAPS:
140       set_led_white;
141       break;
142         case _NUMPAD:
143             set_led_blue;
144             break;
145         case _SYMBOLS:
146             set_led_red;
147             break;
148         case _NAV:
149       set_led_magenta;
150       break;
151         case _MACROS:
152       set_led_cyan;
153       break;
154        default:
155             set_led_green;
156             break;
157     }
158 };