1
0

Fix misleading indentation in all three layers' keymaps

plus add astyle directives to make astyle not complain about it
This commit is contained in:
Craig Disselkoen 2017-10-03 22:41:36 -07:00
parent bc81748391
commit a988fac811

View File

@ -117,6 +117,11 @@ enum { MACRO_VERSION_INFO,
enum { QWERTY, FUNCTION, NUMPAD }; // layers enum { QWERTY, FUNCTION, NUMPAD }; // layers
/* This comment temporarily turns off astyle's indent enforcement
* so we can make the keymaps actually resemble the physical key layout better
*/
// *INDENT-OFF*
const Key keymaps[][ROWS][COLS] PROGMEM = { const Key keymaps[][ROWS][COLS] PROGMEM = {
[QWERTY] = KEYMAP_STACKED [QWERTY] = KEYMAP_STACKED
@ -166,6 +171,8 @@ const Key keymaps[][ROWS][COLS] PROGMEM = {
___) ___)
}; };
/* Re-enable astyle's indent enforcement */
// *INDENT-ON*
/** versionInfoMacro handles the 'firmware version info' macro /** versionInfoMacro handles the 'firmware version info' macro
* When a key bound to the macro is pressed, this macro * When a key bound to the macro is pressed, this macro