From 93d7d7bacf51228dd57a442da69071107a1695bf Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Wed, 25 Apr 2018 08:07:27 +0200 Subject: [PATCH] Turn off the indentation check for the keymap Signed-off-by: Gergely Nagy --- examples/Redial/Redial.ino | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/Redial/Redial.ino b/examples/Redial/Redial.ino index aac5c675..7f7b8a56 100644 --- a/examples/Redial/Redial.ino +++ b/examples/Redial/Redial.ino @@ -31,6 +31,7 @@ bool kaleidoscope::Redial::shouldRemember(Key mapped_key) { return false; } +// *INDENT-OFF* const Key keymaps[][ROWS][COLS] PROGMEM = { [0] = KEYMAP_STACKED ( @@ -50,6 +51,7 @@ const Key keymaps[][ROWS][COLS] PROGMEM = { Key_RightShift, Key_RightAlt, Key_Spacebar, Key_RightControl, Key_Redial), }; +// *INDENT-ON* void setup() { Kaleidoscope.use(&Redial);