]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Fix indentation in quantum_keycodes.h (#5221)
authorKonstantin Đorđević <vomindoraan@gmail.com>
Sun, 24 Feb 2019 23:21:09 +0000 (00:21 +0100)
committerDrashna Jaelre <drashna@live.com>
Sun, 24 Feb 2019 23:21:09 +0000 (15:21 -0800)
quantum/quantum_keycodes.h

index 1ced6ae37e540d8f1c3147d98563070fa3b6bd17..fe2e3510d63f2018c1a0d0d78e3c80ba0114b49f 100644 (file)
@@ -449,36 +449,35 @@ enum quantum_keycodes {
     KC_LOCK,
 #endif
 
-    #ifdef TERMINAL_ENABLE
-        TERM_ON,
-        TERM_OFF,
-    #endif
-
-        EEPROM_RESET,
-
-        UNICODE_MODE_FORWARD,
-        UNICODE_MODE_REVERSE,
-
-        UNICODE_MODE_OSX,
-        UNICODE_MODE_LNX,
-        UNICODE_MODE_WIN,
-        UNICODE_MODE_BSD,
-        UNICODE_MODE_WINC,
-
-        HPT_ON,
-        HPT_OFF,
-        HPT_TOG,
-        HPT_RST,
-        HPT_FBK,
-        HPT_BUZ,
-        HPT_MODI,
-        HPT_MODD,
-        HPT_DWLI,
-        HPT_DWLD,
-
-        // always leave at the end
-        SAFE_RANGE
-    };
+#ifdef TERMINAL_ENABLE
+    TERM_ON,
+    TERM_OFF,
+#endif
+
+    EEPROM_RESET,
+
+    UNICODE_MODE_FORWARD,
+    UNICODE_MODE_REVERSE,
+    UNICODE_MODE_OSX,
+    UNICODE_MODE_LNX,
+    UNICODE_MODE_WIN,
+    UNICODE_MODE_BSD,
+    UNICODE_MODE_WINC,
+
+    HPT_ON,
+    HPT_OFF,
+    HPT_TOG,
+    HPT_RST,
+    HPT_FBK,
+    HPT_BUZ,
+    HPT_MODI,
+    HPT_MODD,
+    HPT_DWLI,
+    HPT_DWLD,
+
+    // always leave at the end
+    SAFE_RANGE
+};
 
 // Ability to use mods in layouts
 #define LCTL(kc) (QK_LCTL | (kc))