We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68fed94 commit a5c21f3Copy full SHA for a5c21f3
keyboards/crkbd/keymaps/victorgalo/keymap.c
@@ -512,6 +512,21 @@ void leader_end_user(void) {
512
unregister_code(KC_RALT);
513
}
514
515
+
516
+ /* single quote + space -> LDR > single quote */
517
+ if (leader_sequence_one_key(KC_QUOT)) {
518
+ tap_code(KC_QUOT); // Type the single quote
519
+ tap_code(KC_SPC); // Type a space after the single quote
520
+ }
521
522
+ /* single quote + space -> LDR > backspace */
523
+ if (leader_sequence_one_key(KC_BSPC)) {
524
+ register_code(KC_LSFT);
525
526
+ unregister_code(KC_LSFT);
527
528
529
530
531
532
bool caps_word_press_user(uint16_t keycode) {
0 commit comments