mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-22 19:39:27 +00:00
6 lines
192 B
C
6 lines
192 B
C
|
#include "tap-dance.h"
|
||
|
|
||
|
qk_tap_dance_action_t tap_dance_actions[] = {
|
||
|
/* Tap once/hold for Shift, tap twice for Caps Lock */
|
||
|
[SHIFT_CAPS] = ACTION_TAP_DANCE_DOUBLE( KC_LSHIFT, KC_CAPS )
|
||
|
};
|