Browse Source

Fix indentation in quantum_keycodes.h (#5221)

pull/5235/head 0.6.303
Konstantin Đorđević 5 years ago
committed by Drashna Jaelre
parent
commit
d5dcf54e23
1 changed files with 29 additions and 30 deletions
  1. +29
    -30
      quantum/quantum_keycodes.h

+ 29
- 30
quantum/quantum_keycodes.h View 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))


Loading…
Cancel
Save