diff --git a/keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c b/keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c index 961a4135cf..9cd8e1e422 100644 --- a/keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c +++ b/keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c @@ -44,37 +44,37 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { switch (keycode) { case LT(0,KC_X): // "LT(0,KC_X)" is the keycode that must be mapped if (!record->tap.count && record->event.pressed) { - tap_code16(C(KC_X)); // Intercept hold function to send Ctrl-X + tap_code16(LCTL(KC_X)); // Intercept hold function to send Ctrl-X return false; } return true; // Return true for normal processing of tap keycode case LT(0,KC_C): if (!record->tap.count && record->event.pressed) { - tap_code16(C(KC_C)); + tap_code16(LCTL(KC_C)); return false; } return true; case LT(0,KC_V): if (!record->tap.count && record->event.pressed) { - tap_code16(C(KC_V)); + tap_code16(LCTL(KC_V)); return false; } return true; case LT(0,KC_Q): if (!record->tap.count && record->event.pressed) { - tap_code16(KC_RALT(KC_Q)); + tap_code16(RALT(KC_Q)); return false; } return true; case LT(0,KC_F): if (!record->tap.count && record->event.pressed) { - tap_code16(KC_RALT(KC_E)); + tap_code16(RALT(KC_E)); return false; } return true; case LT(0,KC_A): if (!record->tap.count && record->event.pressed) { - tap_code16(KC_TAB)); + tap_code16(KC_TAB); return false; } return true;