blob: 0409d627ee1c732aca2f3231b644ee107dd794b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include QMK_KEYBOARD_H
// For the x tap dance. Put it here so it can be used in any keymap
void right_shift_released(tap_dance_state_t *state, void *user_data);
void right_shift_finished(tap_dance_state_t *state, void *user_data);
void right_shift_reset(tap_dance_state_t *state, void *user_data);
void shift_dance_process_record(uint16_t keycode, keyrecord_t *record);
|