blob: 39e23623b34a020094c687bc17f4ff65b866f8cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright 2023 QMK
// SPDX-License-Identifier: GPL-2.0-or-later
#include "quantum.h"
void leader_end_user(void) {
if (leader_sequence_one_key(KC_A)) {
tap_code(KC_1);
}
if (leader_sequence_two_keys(KC_A, KC_B)) {
tap_code(KC_2);
}
if (leader_sequence_three_keys(KC_A, KC_B, KC_C)) {
tap_code(KC_3);
}
if (leader_sequence_four_keys(KC_A, KC_B, KC_C, KC_D)) {
tap_code(KC_4);
}
if (leader_sequence_five_keys(KC_A, KC_B, KC_C, KC_D, KC_E)) {
tap_code(KC_5);
}
}
|