Skip to content

Commit

Permalink
Merge pull request #1 from DenisDBA/combo
Browse files Browse the repository at this point in the history
add combo for insert
  • Loading branch information
DenisDBA authored Feb 17, 2024
2 parents e4db797 + 98e9124 commit f4d3880
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion keyboards/keebio/iris/keymaps/bonelike/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,4 +247,11 @@ bool caps_word_press_user(uint16_t keycode) {
default:
return false; // Deactivate Caps Word.
}
}
}

// Combos
const uint16_t PROGMEM insert_combo[] = {KC_ESC, LGUI_T(KC_C), COMBO_END};

combo_t key_combos[] = {
COMBO(insert_combo, KC_INSERT),
};
1 change: 1 addition & 0 deletions keyboards/keebio/iris/keymaps/bonelike/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ MOUSEKEY_ENABLE = yes # Mouse keys
ENCODER_ENABLE = no
RGB_MATRIX_ENABLE = no
CAPS_WORD_ENABLE = yes
COMBO_ENABLE = yes

0 comments on commit f4d3880

Please sign in to comment.