diff options
69 files changed, 75 insertions, 69 deletions
diff --git a/lib/python/qmk/cli/generate/keycodes.py b/lib/python/qmk/cli/generate/keycodes.py index 17503bac63..3b69b17ed1 100644 --- a/lib/python/qmk/cli/generate/keycodes.py +++ b/lib/python/qmk/cli/generate/keycodes.py | |||
| @@ -143,7 +143,7 @@ def generate_keycode_extras(cli): | |||
| 143 | """ | 143 | """ |
| 144 | 144 | ||
| 145 | # Build the header file. | 145 | # Build the header file. |
| 146 | keycodes_h_lines = [GPL2_HEADER_C_LIKE, GENERATED_HEADER_C_LIKE, '#pragma once', '#include "keymap.h"', '// clang-format off'] | 146 | keycodes_h_lines = [GPL2_HEADER_C_LIKE, GENERATED_HEADER_C_LIKE, '#pragma once', '#include "keycodes.h"', '// clang-format off'] |
| 147 | 147 | ||
| 148 | keycodes = load_spec(cli.args.version, cli.args.lang) | 148 | keycodes = load_spec(cli.args.version, cli.args.lang) |
| 149 | 149 | ||
diff --git a/quantum/keymap.h b/quantum/keymap.h index 0225f53362..1263ef188b 100644 --- a/quantum/keymap.h +++ b/quantum/keymap.h | |||
| @@ -30,8 +30,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 30 | 30 | ||
| 31 | #include "quantum_keycodes.h" | 31 | #include "quantum_keycodes.h" |
| 32 | 32 | ||
| 33 | // translates key to keycode | 33 | #include "keymap_common.h" |
| 34 | uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key); | ||
| 35 | 34 | ||
| 36 | #ifdef ENCODER_MAP_ENABLE | 35 | #ifdef ENCODER_MAP_ENABLE |
| 37 | // Ensure we have a forward declaration for the encoder map | 36 | // Ensure we have a forward declaration for the encoder map |
diff --git a/quantum/keymap_common.h b/quantum/keymap_common.h new file mode 100644 index 0000000000..24fe9af6fe --- /dev/null +++ b/quantum/keymap_common.h | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | // Copyright 2023 QMK | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | #pragma once | ||
| 5 | |||
| 6 | // translates key to keycode | ||
| 7 | uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key); | ||
diff --git a/quantum/keymap_extras/keymap_belgian.h b/quantum/keymap_extras/keymap_belgian.h index 1bf9549c5a..6851c6b4e8 100644 --- a/quantum/keymap_extras/keymap_belgian.h +++ b/quantum/keymap_extras/keymap_belgian.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_bepo.h b/quantum/keymap_extras/keymap_bepo.h index 12026ce649..448727dece 100644 --- a/quantum/keymap_extras/keymap_bepo.h +++ b/quantum/keymap_extras/keymap_bepo.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_brazilian_abnt2.h b/quantum/keymap_extras/keymap_brazilian_abnt2.h index 70a09a52be..8fac7666c2 100644 --- a/quantum/keymap_extras/keymap_brazilian_abnt2.h +++ b/quantum/keymap_extras/keymap_brazilian_abnt2.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_canadian_multilingual.h b/quantum/keymap_extras/keymap_canadian_multilingual.h index 44009f3aa2..5b9b03babb 100644 --- a/quantum/keymap_extras/keymap_canadian_multilingual.h +++ b/quantum/keymap_extras/keymap_canadian_multilingual.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_colemak.h b/quantum/keymap_extras/keymap_colemak.h index 5cb86bf441..d63309f010 100644 --- a/quantum/keymap_extras/keymap_colemak.h +++ b/quantum/keymap_extras/keymap_colemak.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_croatian.h b/quantum/keymap_extras/keymap_croatian.h index 1115592e17..3e7c681ced 100644 --- a/quantum/keymap_extras/keymap_croatian.h +++ b/quantum/keymap_extras/keymap_croatian.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_czech.h b/quantum/keymap_extras/keymap_czech.h index 02692002e3..351c51ad41 100644 --- a/quantum/keymap_extras/keymap_czech.h +++ b/quantum/keymap_extras/keymap_czech.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_danish.h b/quantum/keymap_extras/keymap_danish.h index 18107ccd53..cea9444896 100644 --- a/quantum/keymap_extras/keymap_danish.h +++ b/quantum/keymap_extras/keymap_danish.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_dvorak.h b/quantum/keymap_extras/keymap_dvorak.h index 5767530b3b..9205a72057 100644 --- a/quantum/keymap_extras/keymap_dvorak.h +++ b/quantum/keymap_extras/keymap_dvorak.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_dvorak_fr.h b/quantum/keymap_extras/keymap_dvorak_fr.h index 60675fbf13..b206767614 100644 --- a/quantum/keymap_extras/keymap_dvorak_fr.h +++ b/quantum/keymap_extras/keymap_dvorak_fr.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_dvorak_programmer.h b/quantum/keymap_extras/keymap_dvorak_programmer.h index 6e1ae17807..19187ed13b 100644 --- a/quantum/keymap_extras/keymap_dvorak_programmer.h +++ b/quantum/keymap_extras/keymap_dvorak_programmer.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_estonian.h b/quantum/keymap_extras/keymap_estonian.h index 462bcde429..ea9c56c12a 100644 --- a/quantum/keymap_extras/keymap_estonian.h +++ b/quantum/keymap_extras/keymap_estonian.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_finnish.h b/quantum/keymap_extras/keymap_finnish.h index 7e94896e2e..c0dc1af81e 100644 --- a/quantum/keymap_extras/keymap_finnish.h +++ b/quantum/keymap_extras/keymap_finnish.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_french.h b/quantum/keymap_extras/keymap_french.h index da9467a475..03dbb7bc40 100644 --- a/quantum/keymap_extras/keymap_french.h +++ b/quantum/keymap_extras/keymap_french.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_french_afnor.h b/quantum/keymap_extras/keymap_french_afnor.h index 259e0a30f4..869984c4d2 100644 --- a/quantum/keymap_extras/keymap_french_afnor.h +++ b/quantum/keymap_extras/keymap_french_afnor.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_french_mac_iso.h b/quantum/keymap_extras/keymap_french_mac_iso.h index 9a8ed72604..e5f7514a80 100644 --- a/quantum/keymap_extras/keymap_french_mac_iso.h +++ b/quantum/keymap_extras/keymap_french_mac_iso.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_german.h b/quantum/keymap_extras/keymap_german.h index 251491fb81..38b0c685ba 100644 --- a/quantum/keymap_extras/keymap_german.h +++ b/quantum/keymap_extras/keymap_german.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_german_mac_iso.h b/quantum/keymap_extras/keymap_german_mac_iso.h index de7b60546b..efa9099f20 100644 --- a/quantum/keymap_extras/keymap_german_mac_iso.h +++ b/quantum/keymap_extras/keymap_german_mac_iso.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_greek.h b/quantum/keymap_extras/keymap_greek.h index b4f5b5c5b3..01779cf2e8 100644 --- a/quantum/keymap_extras/keymap_greek.h +++ b/quantum/keymap_extras/keymap_greek.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_hebrew.h b/quantum/keymap_extras/keymap_hebrew.h index 372d7f2e93..284562072d 100644 --- a/quantum/keymap_extras/keymap_hebrew.h +++ b/quantum/keymap_extras/keymap_hebrew.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_hungarian.h b/quantum/keymap_extras/keymap_hungarian.h index 591d71c09c..fbc31ed155 100644 --- a/quantum/keymap_extras/keymap_hungarian.h +++ b/quantum/keymap_extras/keymap_hungarian.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_icelandic.h b/quantum/keymap_extras/keymap_icelandic.h index 800899b515..3bd71c19f2 100644 --- a/quantum/keymap_extras/keymap_icelandic.h +++ b/quantum/keymap_extras/keymap_icelandic.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_irish.h b/quantum/keymap_extras/keymap_irish.h index 2cd63a48e3..6e161628c8 100644 --- a/quantum/keymap_extras/keymap_irish.h +++ b/quantum/keymap_extras/keymap_irish.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_italian.h b/quantum/keymap_extras/keymap_italian.h index 95f3348f63..8092dc1301 100644 --- a/quantum/keymap_extras/keymap_italian.h +++ b/quantum/keymap_extras/keymap_italian.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_italian_mac_ansi.h b/quantum/keymap_extras/keymap_italian_mac_ansi.h index 5e7e2a37e8..ae1281be26 100644 --- a/quantum/keymap_extras/keymap_italian_mac_ansi.h +++ b/quantum/keymap_extras/keymap_italian_mac_ansi.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_italian_mac_iso.h b/quantum/keymap_extras/keymap_italian_mac_iso.h index 1d30451376..f3f01839c3 100644 --- a/quantum/keymap_extras/keymap_italian_mac_iso.h +++ b/quantum/keymap_extras/keymap_italian_mac_iso.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_japanese.h b/quantum/keymap_extras/keymap_japanese.h index 286863deea..947317833e 100644 --- a/quantum/keymap_extras/keymap_japanese.h +++ b/quantum/keymap_extras/keymap_japanese.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_korean.h b/quantum/keymap_extras/keymap_korean.h index 073647de7f..440a6b3b4d 100644 --- a/quantum/keymap_extras/keymap_korean.h +++ b/quantum/keymap_extras/keymap_korean.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_latvian.h b/quantum/keymap_extras/keymap_latvian.h index e3ac1cd433..2f26b1d8af 100644 --- a/quantum/keymap_extras/keymap_latvian.h +++ b/quantum/keymap_extras/keymap_latvian.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_lithuanian_azerty.h b/quantum/keymap_extras/keymap_lithuanian_azerty.h index 11de3ad030..f6dd94f0ca 100644 --- a/quantum/keymap_extras/keymap_lithuanian_azerty.h +++ b/quantum/keymap_extras/keymap_lithuanian_azerty.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_lithuanian_qwerty.h b/quantum/keymap_extras/keymap_lithuanian_qwerty.h index c27389971e..03c6b7a2af 100644 --- a/quantum/keymap_extras/keymap_lithuanian_qwerty.h +++ b/quantum/keymap_extras/keymap_lithuanian_qwerty.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_neo2.h b/quantum/keymap_extras/keymap_neo2.h index e8352ffa08..bc9445892f 100644 --- a/quantum/keymap_extras/keymap_neo2.h +++ b/quantum/keymap_extras/keymap_neo2.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_nordic.h b/quantum/keymap_extras/keymap_nordic.h index e336916713..6464966c71 100644 --- a/quantum/keymap_extras/keymap_nordic.h +++ b/quantum/keymap_extras/keymap_nordic.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_norman.h b/quantum/keymap_extras/keymap_norman.h index 1f773bb410..1a3a0bc53a 100644 --- a/quantum/keymap_extras/keymap_norman.h +++ b/quantum/keymap_extras/keymap_norman.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_norwegian.h b/quantum/keymap_extras/keymap_norwegian.h index 33193d6a4d..af16fec8d6 100644 --- a/quantum/keymap_extras/keymap_norwegian.h +++ b/quantum/keymap_extras/keymap_norwegian.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_plover.h b/quantum/keymap_extras/keymap_plover.h index b51e44b8bb..c0e3311e90 100644 --- a/quantum/keymap_extras/keymap_plover.h +++ b/quantum/keymap_extras/keymap_plover.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_plover_dvorak.h b/quantum/keymap_extras/keymap_plover_dvorak.h index f8341f8cbc..7feb52a25c 100644 --- a/quantum/keymap_extras/keymap_plover_dvorak.h +++ b/quantum/keymap_extras/keymap_plover_dvorak.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_polish.h b/quantum/keymap_extras/keymap_polish.h index 6b37d77a0a..40870ec237 100644 --- a/quantum/keymap_extras/keymap_polish.h +++ b/quantum/keymap_extras/keymap_polish.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_portuguese.h b/quantum/keymap_extras/keymap_portuguese.h index 17da9a6c11..b4570ad922 100644 --- a/quantum/keymap_extras/keymap_portuguese.h +++ b/quantum/keymap_extras/keymap_portuguese.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_portuguese_mac_iso.h b/quantum/keymap_extras/keymap_portuguese_mac_iso.h index 3d34a39ae5..57a27d04e9 100644 --- a/quantum/keymap_extras/keymap_portuguese_mac_iso.h +++ b/quantum/keymap_extras/keymap_portuguese_mac_iso.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_romanian.h b/quantum/keymap_extras/keymap_romanian.h index fb48a0fda7..cf4c17125f 100644 --- a/quantum/keymap_extras/keymap_romanian.h +++ b/quantum/keymap_extras/keymap_romanian.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_russian.h b/quantum/keymap_extras/keymap_russian.h index 3643718444..fd3a1604c8 100644 --- a/quantum/keymap_extras/keymap_russian.h +++ b/quantum/keymap_extras/keymap_russian.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_serbian.h b/quantum/keymap_extras/keymap_serbian.h index dd1bda7533..732e2e939d 100644 --- a/quantum/keymap_extras/keymap_serbian.h +++ b/quantum/keymap_extras/keymap_serbian.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_serbian_latin.h b/quantum/keymap_extras/keymap_serbian_latin.h index 83495b63be..5151696a10 100644 --- a/quantum/keymap_extras/keymap_serbian_latin.h +++ b/quantum/keymap_extras/keymap_serbian_latin.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_slovak.h b/quantum/keymap_extras/keymap_slovak.h index 10714f1be9..81a88fa25c 100644 --- a/quantum/keymap_extras/keymap_slovak.h +++ b/quantum/keymap_extras/keymap_slovak.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_slovenian.h b/quantum/keymap_extras/keymap_slovenian.h index 30910530e0..1e17342c27 100644 --- a/quantum/keymap_extras/keymap_slovenian.h +++ b/quantum/keymap_extras/keymap_slovenian.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_spanish.h b/quantum/keymap_extras/keymap_spanish.h index cac16c08a5..bcdd5af0c2 100644 --- a/quantum/keymap_extras/keymap_spanish.h +++ b/quantum/keymap_extras/keymap_spanish.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_spanish_dvorak.h b/quantum/keymap_extras/keymap_spanish_dvorak.h index 1feab96b8c..fb033df770 100644 --- a/quantum/keymap_extras/keymap_spanish_dvorak.h +++ b/quantum/keymap_extras/keymap_spanish_dvorak.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_steno.h b/quantum/keymap_extras/keymap_steno.h index 07d96b7465..852b2f7121 100644 --- a/quantum/keymap_extras/keymap_steno.h +++ b/quantum/keymap_extras/keymap_steno.h | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | 16 | ||
| 17 | #pragma once | 17 | #pragma once |
| 18 | 18 | ||
| 19 | #include "keymap.h" | 19 | #include "keycodes.h" |
| 20 | 20 | ||
| 21 | // List of keycodes for the steno keyboard. To prevent | 21 | // List of keycodes for the steno keyboard. To prevent |
| 22 | // errors, this must be <= 42 total entries in order to | 22 | // errors, this must be <= 42 total entries in order to |
diff --git a/quantum/keymap_extras/keymap_swedish.h b/quantum/keymap_extras/keymap_swedish.h index 4cdf4879c3..acb49f7773 100644 --- a/quantum/keymap_extras/keymap_swedish.h +++ b/quantum/keymap_extras/keymap_swedish.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_swedish_mac_ansi.h b/quantum/keymap_extras/keymap_swedish_mac_ansi.h index 9649f59dd0..ef48a9e493 100644 --- a/quantum/keymap_extras/keymap_swedish_mac_ansi.h +++ b/quantum/keymap_extras/keymap_swedish_mac_ansi.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_swedish_mac_iso.h b/quantum/keymap_extras/keymap_swedish_mac_iso.h index 068c81b020..2eaef5e60c 100644 --- a/quantum/keymap_extras/keymap_swedish_mac_iso.h +++ b/quantum/keymap_extras/keymap_swedish_mac_iso.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_swedish_pro_mac_ansi.h b/quantum/keymap_extras/keymap_swedish_pro_mac_ansi.h index c0692ababd..d33a259023 100644 --- a/quantum/keymap_extras/keymap_swedish_pro_mac_ansi.h +++ b/quantum/keymap_extras/keymap_swedish_pro_mac_ansi.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_swedish_pro_mac_iso.h b/quantum/keymap_extras/keymap_swedish_pro_mac_iso.h index e01f0a7dc3..680bd1db9e 100644 --- a/quantum/keymap_extras/keymap_swedish_pro_mac_iso.h +++ b/quantum/keymap_extras/keymap_swedish_pro_mac_iso.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_swiss_de.h b/quantum/keymap_extras/keymap_swiss_de.h index 0a6e6e4918..69bba7293e 100644 --- a/quantum/keymap_extras/keymap_swiss_de.h +++ b/quantum/keymap_extras/keymap_swiss_de.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_swiss_fr.h b/quantum/keymap_extras/keymap_swiss_fr.h index 05a4a4c279..1e2f833db1 100644 --- a/quantum/keymap_extras/keymap_swiss_fr.h +++ b/quantum/keymap_extras/keymap_swiss_fr.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_turkish_f.h b/quantum/keymap_extras/keymap_turkish_f.h index 0dfc0236e8..4fdcf3f746 100644 --- a/quantum/keymap_extras/keymap_turkish_f.h +++ b/quantum/keymap_extras/keymap_turkish_f.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_turkish_q.h b/quantum/keymap_extras/keymap_turkish_q.h index cc64300b18..5a9362acb4 100644 --- a/quantum/keymap_extras/keymap_turkish_q.h +++ b/quantum/keymap_extras/keymap_turkish_q.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_uk.h b/quantum/keymap_extras/keymap_uk.h index ff6f8c9c2e..71e5f38f55 100644 --- a/quantum/keymap_extras/keymap_uk.h +++ b/quantum/keymap_extras/keymap_uk.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_ukrainian.h b/quantum/keymap_extras/keymap_ukrainian.h index b954bb2398..3f3ec4cec2 100644 --- a/quantum/keymap_extras/keymap_ukrainian.h +++ b/quantum/keymap_extras/keymap_ukrainian.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_us.h b/quantum/keymap_extras/keymap_us.h index 38df8c6336..6101c8d8ba 100644 --- a/quantum/keymap_extras/keymap_us.h +++ b/quantum/keymap_extras/keymap_us.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_us_extended.h b/quantum/keymap_extras/keymap_us_extended.h index c4f627c30d..90da98c756 100644 --- a/quantum/keymap_extras/keymap_us_extended.h +++ b/quantum/keymap_extras/keymap_us_extended.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_us_international.h b/quantum/keymap_extras/keymap_us_international.h index 1f2bc33476..bd5f21ec8c 100644 --- a/quantum/keymap_extras/keymap_us_international.h +++ b/quantum/keymap_extras/keymap_us_international.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_us_international_linux.h b/quantum/keymap_extras/keymap_us_international_linux.h index 16d072cc5b..4551cbe29f 100644 --- a/quantum/keymap_extras/keymap_us_international_linux.h +++ b/quantum/keymap_extras/keymap_us_international_linux.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_workman.h b/quantum/keymap_extras/keymap_workman.h index 5fe9d36b16..808caec054 100644 --- a/quantum/keymap_extras/keymap_workman.h +++ b/quantum/keymap_extras/keymap_workman.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
diff --git a/quantum/keymap_extras/keymap_workman_zxcvm.h b/quantum/keymap_extras/keymap_workman_zxcvm.h index 757f98e912..f8645ac4cf 100644 --- a/quantum/keymap_extras/keymap_workman_zxcvm.h +++ b/quantum/keymap_extras/keymap_workman_zxcvm.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | *******************************************************************************/ | 24 | *******************************************************************************/ |
| 25 | 25 | ||
| 26 | #pragma once | 26 | #pragma once |
| 27 | #include "keymap.h" | 27 | #include "keycodes.h" |
| 28 | // clang-format off | 28 | // clang-format off |
| 29 | 29 | ||
| 30 | // Aliases | 30 | // Aliases |
