Skip to content

Commit

Permalink
fix: key_overrides type (for introspection support)
Browse files Browse the repository at this point in the history
  • Loading branch information
74k1 committed Jul 25, 2024
1 parent 4f2a0e9 commit 57fbb51
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ const key_override_t delete_key_override = ko_make_basic(MOD_MASK_SHIFT, KC_BSPC
const key_override_t backslash_key_override = ko_make_basic(MOD_MASK_SHIFT, CH_SLSH, CH_BSLS);

// this globally defines all key overrides to be used
const key_override_t **key_overrides = (const key_override_t *[]){
const key_override_t *key_overrides[] = {
&delete_key_override,
&backslash_key_override,
NULL
&backslash_key_override
};

// TAIKO COMBOS
Expand Down

0 comments on commit 57fbb51

Please sign in to comment.