NeoMutt  2025-12-11-800-ga0ee0f
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
config.c File Reference

Config used by Color. More...

#include "config.h"
#include <stdbool.h>
#include <stddef.h>
#include "config/lib.h"
+ Include dependency graph for config.c:

Go to the source code of this file.

Variables

struct ConfigDef ColorVars []
 Config definitions for the Color module.
 

Detailed Description

Config used by Color.

Authors
  • Richard Russon

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file config.c.

Variable Documentation

◆ ColorVars

struct ConfigDef ColorVars[]
Initial value:
= {
{ "color_directcolor", DT_BOOL|D_ON_STARTUP, false, 0, NULL,
"Use 24bit colors (aka truecolor aka directcolor)"
},
{ NULL },
}
@ DT_BOOL
boolean option
Definition types.h:32
#define D_ON_STARTUP
May only be set at startup.
Definition types.h:79

Config definitions for the Color module.

Definition at line 37 of file config.c.

37 {
38 // clang-format off
39 { "color_directcolor", DT_BOOL|D_ON_STARTUP, false, 0, NULL,
40 "Use 24bit colors (aka truecolor aka directcolor)"
41 },
42
43 { NULL },
44 // clang-format on
45};