From 7f314ce702d7196d5008fcdf31b5a1c2041199d3 Mon Sep 17 00:00:00 2001 From: Philippe Eberli Date: Tue, 13 Feb 2024 22:57:01 +0100 Subject: [PATCH] CapsLock -> CapsWord --- keymap.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/keymap.c b/keymap.c index eb55925..00650ec 100644 --- a/keymap.c +++ b/keymap.c @@ -95,14 +95,6 @@ bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) { return false; } -void caps_word_set_user(bool active) { - if (active) { - RGB_MATRIX_INDICATOR_SET_COLOR(CAPS_LOCK_LED_INDEX, 255, 0, 0); - } else { - RGB_MATRIX_INDICATOR_SET_COLOR(CAPS_LOCK_LED_INDEX, 0, 0, 0); - } -} - bool caps_word_press_user(uint16_t keycode) { switch (keycode) { // Keycodes that continue Caps Word, with shift applied. @@ -120,4 +112,4 @@ bool caps_word_press_user(uint16_t keycode) { default: return false; // Deactivate Caps Word. } -} \ No newline at end of file +}