[chore} Working on gitea actions
Some checks failed
Compile my Keebs / lint-and-compile (push) Failing after 21s
Some checks failed
Compile my Keebs / lint-and-compile (push) Failing after 21s
This commit is contained in:
@@ -17,7 +17,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
case COPY:
|
||||
if (record->event.pressed) {
|
||||
if (isLinux) {
|
||||
tap_code16(LCTL(KC_C));
|
||||
tap_code16(RCS(KC_C));
|
||||
} else {
|
||||
tap_code16(LGUI(KC_C));
|
||||
}
|
||||
@@ -26,7 +26,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
case PASTE:
|
||||
if (record->event.pressed) {
|
||||
if (isLinux) {
|
||||
tap_code16(LCTL(KC_V));
|
||||
tap_code16(RCS(KC_V));
|
||||
} else {
|
||||
tap_code16(LGUI(KC_V));
|
||||
}
|
||||
@@ -35,7 +35,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
case CUT:
|
||||
if (record->event.pressed) {
|
||||
if (isLinux) {
|
||||
tap_code16(LCTL(KC_X));
|
||||
tap_code16(RCS(KC_X));
|
||||
} else {
|
||||
tap_code16(LGUI(KC_X));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user