Skip to content

Commit

Permalink
Remove qk_ prefix in tap dance code
Browse files Browse the repository at this point in the history
  • Loading branch information
precondition committed Jan 1, 2023
1 parent ec27bbc commit fbb2ed6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tapdance.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include QMK_KEYBOARD_H
#include "keymap.h"

static void sentence_end(qk_tap_dance_state_t *state, void *user_data) {
static void sentence_end(tap_dance_state_t *state, void *user_data) {
switch (state->count) {

// Double tapping TD_DOT produces
Expand Down Expand Up @@ -41,7 +41,7 @@ static void sentence_end(qk_tap_dance_state_t *state, void *user_data) {
}
};

qk_tap_dance_action_t tap_dance_actions[] = {
tap_dance_action_t tap_dance_actions[] = {
[DOT_TD] = ACTION_TAP_DANCE_FN_ADVANCED(sentence_end, NULL, NULL),
};

0 comments on commit fbb2ed6

Please sign in to comment.