aboutsummaryrefslogtreecommitdiff
path: root/layouts/community/ergodox/software_neo2/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/community/ergodox/software_neo2/keymap.c')
-rw-r--r--layouts/community/ergodox/software_neo2/keymap.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/layouts/community/ergodox/software_neo2/keymap.c b/layouts/community/ergodox/software_neo2/keymap.c
index 73e0694ba..8f7337601 100644
--- a/layouts/community/ergodox/software_neo2/keymap.c
+++ b/layouts/community/ergodox/software_neo2/keymap.c
@@ -95,26 +95,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
95), 95),
96}; 96};
97 97
98const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
99{
100 // MACRODOWN only works in this function
101 switch(id) {
102 case 0:
103 if (record->event.pressed) {
104 register_code(KC_RSFT);
105 } else {
106 unregister_code(KC_RSFT);
107 }
108 break;
109 }
110 return MACRO_NONE;
111};
112
113// Runs just one time when the keyboard initializes.
114void matrix_init_user(void) {
115
116};
117
118// Runs constantly in the background, in a loop. 98// Runs constantly in the background, in a loop.
119void matrix_scan_user(void) { 99void matrix_scan_user(void) {
120 100