diff options
author | Konstantin Đorđević <vomindoraan@gmail.com> | 2019-02-25 00:21:09 +0100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-02-24 15:21:09 -0800 |
commit | d5dcf54e23a39d9d55e99ff9b27ee7d1347bcc1a (patch) | |
tree | 3fc7b41a7b8b30767dc3143dd74e99aea140ca3f | |
parent | c8de0f78bfa729e610566d41a31aa1615369a597 (diff) | |
download | qmk_firmware-d5dcf54e23a39d9d55e99ff9b27ee7d1347bcc1a.tar.gz qmk_firmware-d5dcf54e23a39d9d55e99ff9b27ee7d1347bcc1a.zip |
Fix indentation in quantum_keycodes.h (#5221)
-rw-r--r-- | quantum/quantum_keycodes.h | 59 |
1 files changed, 29 insertions, 30 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h index 1ced6ae37..fe2e3510d 100644 --- a/quantum/quantum_keycodes.h +++ b/quantum/quantum_keycodes.h | |||
@@ -449,36 +449,35 @@ enum quantum_keycodes { | |||
449 | KC_LOCK, | 449 | KC_LOCK, |
450 | #endif | 450 | #endif |
451 | 451 | ||
452 | #ifdef TERMINAL_ENABLE | 452 | #ifdef TERMINAL_ENABLE |
453 | TERM_ON, | 453 | TERM_ON, |
454 | TERM_OFF, | 454 | TERM_OFF, |
455 | #endif | 455 | #endif |
456 | 456 | ||
457 | EEPROM_RESET, | 457 | EEPROM_RESET, |
458 | 458 | ||
459 | UNICODE_MODE_FORWARD, | 459 | UNICODE_MODE_FORWARD, |
460 | UNICODE_MODE_REVERSE, | 460 | UNICODE_MODE_REVERSE, |
461 | 461 | UNICODE_MODE_OSX, | |
462 | UNICODE_MODE_OSX, | 462 | UNICODE_MODE_LNX, |
463 | UNICODE_MODE_LNX, | 463 | UNICODE_MODE_WIN, |
464 | UNICODE_MODE_WIN, | 464 | UNICODE_MODE_BSD, |
465 | UNICODE_MODE_BSD, | 465 | UNICODE_MODE_WINC, |
466 | UNICODE_MODE_WINC, | 466 | |
467 | 467 | HPT_ON, | |
468 | HPT_ON, | 468 | HPT_OFF, |
469 | HPT_OFF, | 469 | HPT_TOG, |
470 | HPT_TOG, | 470 | HPT_RST, |
471 | HPT_RST, | 471 | HPT_FBK, |
472 | HPT_FBK, | 472 | HPT_BUZ, |
473 | HPT_BUZ, | 473 | HPT_MODI, |
474 | HPT_MODI, | 474 | HPT_MODD, |
475 | HPT_MODD, | 475 | HPT_DWLI, |
476 | HPT_DWLI, | 476 | HPT_DWLD, |
477 | HPT_DWLD, | 477 | |
478 | 478 | // always leave at the end | |
479 | // always leave at the end | 479 | SAFE_RANGE |
480 | SAFE_RANGE | 480 | }; |
481 | }; | ||
482 | 481 | ||
483 | // Ability to use mods in layouts | 482 | // Ability to use mods in layouts |
484 | #define LCTL(kc) (QK_LCTL | (kc)) | 483 | #define LCTL(kc) (QK_LCTL | (kc)) |