skeletyl: test tap dance
This commit is contained in:
parent
28107592ce
commit
23ec1ec8d8
2 changed files with 13 additions and 1 deletions
|
@ -39,3 +39,16 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
)
|
)
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
switch (keycode) {
|
||||||
|
case KC_X:
|
||||||
|
if (record->tap.count && record->event.pressed) {
|
||||||
|
tap_code16(C(KC_X)); // Intercept tap function to send Ctrl-C
|
||||||
|
} else if (record->event.pressed) {
|
||||||
|
tap_code16(C(LCTL(KC_X))); // Intercept hold function to send Ctrl-V
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
|
|
||||||
## ToDo
|
## ToDo
|
||||||
|
|
||||||
- daumentasten
|
|
||||||
- tapdances
|
- tapdances
|
||||||
- combos
|
- combos
|
||||||
- kurze keycodes
|
- kurze keycodes
|
||||||
|
|
Loading…
Reference in a new issue