aboutsummaryrefslogtreecommitdiff
path: root/layouts/community/ergodox/naps62/keymap.c
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-01-11 20:25:45 +1100
committerGitHub <noreply@github.com>2021-01-11 01:25:45 -0800
commit415d683ea71d516dd2a7d4f2f8e43eb4e3e993cb (patch)
tree71c028b6b7dc0ef56a6f25fdd4f4de6376ee1d69 /layouts/community/ergodox/naps62/keymap.c
parent5ee3cb385fd085bbe76e98e8c208ca2ac7ea4871 (diff)
downloadqmk_firmware-415d683ea71d516dd2a7d4f2f8e43eb4e3e993cb.tar.gz
qmk_firmware-415d683ea71d516dd2a7d4f2f8e43eb4e3e993cb.zip
Remove unused `action_get_macro()` usages in user files (#11165)
Diffstat (limited to 'layouts/community/ergodox/naps62/keymap.c')
-rw-r--r--layouts/community/ergodox/naps62/keymap.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/layouts/community/ergodox/naps62/keymap.c b/layouts/community/ergodox/naps62/keymap.c
index a242a14fe..230b3376b 100644
--- a/layouts/community/ergodox/naps62/keymap.c
+++ b/layouts/community/ergodox/naps62/keymap.c
@@ -138,26 +138,6 @@ LAYOUT_ergodox(
138), 138),
139}; 139};
140 140
141const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
142{
143 // MACRODOWN only works in this function
144 switch(id) {
145 case 0:
146 if (record->event.pressed) {
147 register_code(KC_RSFT);
148 } else {
149 unregister_code(KC_RSFT);
150 }
151 break;
152 }
153 return MACRO_NONE;
154};
155
156// Runs just one time when the keyboard initializes.
157void matrix_init_user(void) {
158
159};
160
161// Runs constantly in the background, in a loop. 141// Runs constantly in the background, in a loop.
162void matrix_scan_user(void) { 142void matrix_scan_user(void) {
163 143