summary refs log tree commit diff
path: root/quantum/process_keycode
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2020-06-22 11:21:48 +1000
committerGitHub <noreply@github.com>2020-06-22 11:21:48 +1000
commit3d6d89966614be1e80d9957fb83743934c5eb162 (patch)
treea1c467283575fa7a596c27c0794a34347662f371 /quantum/process_keycode
parentcb13dd0a33c153d8cb0a26596489804c012eaae4 (diff)
`qmk cformat` (#9500)
Diffstat (limited to 'quantum/process_keycode')
-rw-r--r--quantum/process_keycode/process_ucis.c79
-rw-r--r--quantum/process_keycode/process_unicode_common.c2
-rw-r--r--quantum/process_keycode/process_unicodemap.c2
3 files changed, 41 insertions, 42 deletions
diff --git a/quantum/process_keycode/process_ucis.c b/quantum/process_keycode/process_ucis.c
index 2541d6eb26..12b0aba9bf 100644
--- a/quantum/process_keycode/process_ucis.c
+++ b/quantum/process_keycode/process_ucis.c
@@ -72,8 +72,7 @@ bool process_ucis(uint16_t keycode, keyrecord_t *record) {
         return true;
     }
 
-    bool special = keycode == KC_SPC || keycode == KC_ENT ||
-                   keycode == KC_ESC || keycode == KC_BSPC;
+    bool special = keycode == KC_SPC || keycode == KC_ENT || keycode == KC_ESC || keycode == KC_BSPC;
     if (qk_ucis_state.count >= UCIS_MAX_SYMBOL_LENGTH && !special) {
         return false;
     }
@@ -82,49 +81,49 @@ bool process_ucis(uint16_t keycode, keyrecord_t *record) {
     qk_ucis_state.count++;
 
     switch (keycode) {
-    case KC_BSPC:
-        if (qk_ucis_state.count >= 2) {
-            qk_ucis_state.count -= 2;
-            return true;
-        } else {
-            qk_ucis_state.count--;
-            return false;
-        }
+        case KC_BSPC:
+            if (qk_ucis_state.count >= 2) {
+                qk_ucis_state.count -= 2;
+                return true;
+            } else {
+                qk_ucis_state.count--;
+                return false;
+            }
 
-    case KC_SPC:
-    case KC_ENT:
-    case KC_ESC:
-        for (uint8_t i = 0; i < qk_ucis_state.count; i++) {
-            register_code(KC_BSPC);
-            unregister_code(KC_BSPC);
-            wait_ms(UNICODE_TYPE_DELAY);
-        }
+        case KC_SPC:
+        case KC_ENT:
+        case KC_ESC:
+            for (uint8_t i = 0; i < qk_ucis_state.count; i++) {
+                register_code(KC_BSPC);
+                unregister_code(KC_BSPC);
+                wait_ms(UNICODE_TYPE_DELAY);
+            }
 
-        if (keycode == KC_ESC) {
-            qk_ucis_state.in_progress = false;
-            qk_ucis_cancel();
-            return false;
-        }
+            if (keycode == KC_ESC) {
+                qk_ucis_state.in_progress = false;
+                qk_ucis_cancel();
+                return false;
+            }
 
-        uint8_t i;
-        bool    symbol_found = false;
-        for (i = 0; ucis_symbol_table[i].symbol; i++) {
-            if (is_uni_seq(ucis_symbol_table[i].symbol)) {
-                symbol_found = true;
-                register_ucis(ucis_symbol_table[i].code_points);
-                break;
+            uint8_t i;
+            bool    symbol_found = false;
+            for (i = 0; ucis_symbol_table[i].symbol; i++) {
+                if (is_uni_seq(ucis_symbol_table[i].symbol)) {
+                    symbol_found = true;
+                    register_ucis(ucis_symbol_table[i].code_points);
+                    break;
+                }
+            }
+            if (symbol_found) {
+                qk_ucis_success(i);
+            } else {
+                qk_ucis_symbol_fallback();
             }
-        }
-        if (symbol_found) {
-            qk_ucis_success(i);
-        } else {
-            qk_ucis_symbol_fallback();
-        }
 
-        qk_ucis_state.in_progress = false;
-        return false;
+            qk_ucis_state.in_progress = false;
+            return false;
 
-    default:
-        return true;
+        default:
+            return true;
     }
 }
diff --git a/quantum/process_keycode/process_unicode_common.c b/quantum/process_keycode/process_unicode_common.c
index bea34c31ea..84c44d9874 100644
--- a/quantum/process_keycode/process_unicode_common.c
+++ b/quantum/process_keycode/process_unicode_common.c
@@ -257,7 +257,7 @@ void send_unicode_string(const char *str) {
 
     while (*str) {
         int32_t code_point = 0;
-        str = decode_utf8(str, &code_point);
+        str                = decode_utf8(str, &code_point);
 
         if (code_point >= 0) {
             register_unicode(code_point);
diff --git a/quantum/process_keycode/process_unicodemap.c b/quantum/process_keycode/process_unicodemap.c
index 789a90445b..fcf676c24e 100644
--- a/quantum/process_keycode/process_unicodemap.c
+++ b/quantum/process_keycode/process_unicodemap.c
@@ -22,7 +22,7 @@ __attribute__((weak)) uint16_t unicodemap_index(uint16_t keycode) {
         uint16_t index = keycode - QK_UNICODEMAP_PAIR;
 
         bool shift = unicode_saved_mods & MOD_MASK_SHIFT;
-        bool caps = IS_HOST_LED_ON(USB_LED_CAPS_LOCK);
+        bool caps  = IS_HOST_LED_ON(USB_LED_CAPS_LOCK);
         if (shift ^ caps) {
             index >>= 7;
         }