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 739b843 commit f47c48b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tapdance.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include QMK_KEYBOARD_H
#include "precondition_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,11 +41,11 @@ static void sentence_end(qk_tap_dance_state_t *state, void *user_data) {
}
};

void sentence_end_finished (qk_tap_dance_state_t *state, void *user_data) {
void sentence_end_finished (tap_dance_state_t *state, void *user_data) {
last_keycode = KC_DOT;
}

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

0 comments on commit f47c48b

Please sign in to comment.