diff options
author | Osamu Aoki <osamuaoki@users.noreply.github.com> | 2022-07-02 21:08:48 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-02 22:08:48 +1000 |
commit | 871eeae4eab476cb64b40e0636ec19deeea79525 (patch) | |
tree | 3b3836b26b02805ef814e06299c3e61e74e66a31 /quantum/command.c | |
parent | c7d8adfeaab26aedcf2edb22c29440a17462471c (diff) |
PoC: Swap Escape and Caps (#16336)
Diffstat (limited to 'quantum/command.c')
-rw-r--r-- | quantum/command.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/quantum/command.c b/quantum/command.c index f90d73207c..2e94cb44b8 100644 --- a/quantum/command.c +++ b/quantum/command.c @@ -282,6 +282,7 @@ static void print_eeconfig(void) { ".swap_grave_esc: %u\n" ".swap_backslash_backspace: %u\n" ".nkro: %u\n" + ".swap_escape_capslock: %u\n" , kc.raw , kc.swap_control_capslock @@ -294,6 +295,7 @@ static void print_eeconfig(void) { , kc.swap_grave_esc , kc.swap_backslash_backspace , kc.nkro + , kc.swap_escape_capslock ); /* clang-format on */ # ifdef BACKLIGHT_ENABLE |