blob: b37c4cfbb7591bade677e8152d970860229a4353 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/* Copyright 2018 Jarred Steenvoorden
*
* 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 "jarred.h"
#include "version.h"
__attribute__ ((weak))
bool process_record_keymap(uint16_t keycode, keyrecord_t *record) {
return true;
}
bool lowerPressed, raisePressed;
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case LOWER:
case RAISE:
// Both lower and raise activate the same layer
if (record->event.pressed) {
layer_on(_LW);
} else {
layer_off(_LW);
}
// But keep track of each to active adjust layer
if (keycode == LOWER) {
lowerPressed = record->event.pressed;
} else {
raisePressed = record->event.pressed;
}
// When both are pressed, activate adjust
if (lowerPressed && raisePressed) {
layer_on(_NP);
} else {
layer_off(_NP);
}
break;
case NUMPAD:
if (record->event.pressed) {
layer_on(_NP);
} else {
layer_off(_NP);
}
break;
case NAVI:
if (record->event.pressed) {
layer_on(_NV);
} else {
layer_off(_NV);
// Release mods set by ALT_TAB and CTL_TAB
unregister_code(KC_LALT);
unregister_code(KC_LCTL);
}
break;
case VRSN: // Prints firmware version
if (record->event.pressed) {
send_string_with_delay_P(PSTR(QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION ", Built on: " QMK_BUILDDATE), MACRO_TIMER);
}
break;
case ALT_TAB:
if (record->event.pressed) {
register_code(KC_LALT);
tap_code(KC_TAB);
}
break;
case CTL_TAB:
if (record->event.pressed) {
register_code(KC_LCTL);
tap_code(KC_TAB);
}
break;
}
return process_record_keymap(keycode, record);
}
|