Adds a tap-dance key to the Keychron K17 Max that sends VS Code chord shortcuts:
Single tap: Ctrl+K Ctrl+C (add line comment)
Double tap: Ctrl+K Ctrl+D (format document)
Uses ACTION_TAP_DANCE_FN with SEND_STRING — the correct approach for sending key sequences from tap-dance. Also removes leftover dead custom keycode stubs from an earlier failed implementation attempt.
Adds a tap-dance key to the Keychron K17 Max that sends VS Code chord shortcuts:
- Single tap: `Ctrl+K Ctrl+C` (add line comment)
- Double tap: `Ctrl+K Ctrl+D` (format document)
Uses `ACTION_TAP_DANCE_FN` with `SEND_STRING` — the correct approach for sending key sequences from tap-dance. Also removes leftover dead custom keycode stubs from an earlier failed implementation attempt.
CK_CTRL_K_C and CK_CTRL_K_D were leftover from an earlier failed
attempt using ACTION_TAP_DANCE_DOUBLE with custom keycodes. Now that
TD_CHORDS uses ACTION_TAP_DANCE_FN with SEND_STRING, they are unused.
rootiest
changed target branch from feat/raw-hid to main2026-04-11 05:01:06 +00:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Adds a tap-dance key to the Keychron K17 Max that sends VS Code chord shortcuts:
Ctrl+K Ctrl+C(add line comment)Ctrl+K Ctrl+D(format document)Uses
ACTION_TAP_DANCE_FNwithSEND_STRING— the correct approach for sending key sequences from tap-dance. Also removes leftover dead custom keycode stubs from an earlier failed implementation attempt.