Restrict the max sequence length to 4

Using a max length of 16 is a huge waste of resources, restrict it to 4 instead.

Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
pull/389/head
Gergely Nagy 8 years ago
parent a1af698eb6
commit 0f65281703

@ -21,7 +21,7 @@
#include <Kaleidoscope.h>
#include <Kaleidoscope-Ranges.h>
#define LEADER_MAX_SEQUENCE_LENGTH 16
#define LEADER_MAX_SEQUENCE_LENGTH 4
#define LEAD(n) (Key){ .raw = KaleidoscopePlugins::Ranges::LEAD_FIRST + n }

Loading…
Cancel
Save