From 4101a4ba1fc9075aa58c7b02b250e7ff26375d81 Mon Sep 17 00:00:00 2001 From: Raheman Vaiya Date: Mon, 8 Apr 2024 01:32:23 -0400 Subject: [PATCH] config: Increase the auxiliary descriptor limit to allow for more advanced configs (#710) --- src/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.h b/src/config.h index e961f5d..3fc402c 100644 --- a/src/config.h +++ b/src/config.h @@ -113,7 +113,7 @@ struct config { struct layer layers[MAX_LAYERS]; /* Auxiliary descriptors used by layer bindings. */ - struct descriptor descriptors[64]; + struct descriptor descriptors[256]; struct macro macros[256]; struct command commands[64]; char aliases[256][32];