From ff27d9ee14d533bee6d6d3a131acd769d8c157b3 Mon Sep 17 00:00:00 2001 From: NRK Date: Wed, 26 Oct 2022 14:54:07 +0600 Subject: [PATCH] clarify the goal of the default icon set --- src/icons.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/icons.h b/src/icons.h index fe53980f..846b77a5 100644 --- a/src/icons.h +++ b/src/icons.h @@ -195,9 +195,16 @@ static const struct icon_pair icons_name[] = { #ifdef ICONS_GENERATE /* - * All entries are case-insensitive + * The goal here is to provide a small set of default values. We don't try to + * provide icons for everything under the sun because keeping a _huge_ table of + * icons would: increase binary size, increase memory usage, decrease performance. + * + * Users are free to customize this *locally* as they see fit. Only open a + * pull-request if you think your changes are aligned with the goal described + * above. */ -static const struct icon_pair icons_ext[] = { + +static const struct icon_pair icons_ext[] = { /* All entries are case-insensitive */ /* Numbers */ {"1", ICON_MANUAL, COLOR_DOCS}, {"7z", ICON_ARCHIVE, COLOR_ARCHIVE},