Keymap: added default layout to the kbd6x for the tofu hhkb (#4132)

* added layouts

* fixed

* might aswell fix the default layout aswell
This commit is contained in:
Chris
2018-10-15 12:41:43 -05:00
committed by Drashna Jaelre
parent ec86141a4a
commit 47e29754c2
5 changed files with 103 additions and 19 deletions

View File

@@ -33,25 +33,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
),
};
const uint16_t PROGMEM fn_actions[] = {
};
const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
{
// MACRODOWN only works in this function
switch(id) {
case 0:
if (record->event.pressed) {
register_code(KC_RSFT);
} else {
unregister_code(KC_RSFT);
}
break;
}
return MACRO_NONE;
};
void matrix_init_user(void) {