NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
config.c
Go to the documentation of this file.
1
29#include "config.h"
30#include <stddef.h>
31#include <stdbool.h>
32#include "config/lib.h"
33#include "lib.h"
34#include "expando/lib.h"
35
42static const struct ExpandoDefinition HistoryFormatDef[] = {
43 // clang-format off
47 { "C", "number", ED_HISTORY, ED_HIS_NUMBER, E_TYPE_NUMBER, NULL },
48 { "s", "match", ED_HISTORY, ED_HIS_MATCH, E_TYPE_STRING, NULL },
49 { NULL, NULL, 0, -1, -1, NULL }
50 // clang-format on
51};
52
56static struct ConfigDef HistoryVars[] = {
57 // clang-format off
58 { "history", DT_NUMBER|D_INTEGER_NOT_NEGATIVE, 10, 0, NULL,
59 "Number of history entries to keep in memory per category"
60 },
61 { "history_file", DT_PATH|D_PATH_FILE, IP "~/.mutthistory", 0, NULL,
62 "File to save history in"
63 },
64 { "history_format", DT_EXPANDO, IP "%s", IP &HistoryFormatDef, NULL,
65 "printf-like format string for the history menu"
66 },
67 { "history_remove_dups", DT_BOOL, false, 0, NULL,
68 "Remove duplicate entries from the history"
69 },
70 { "save_history", DT_NUMBER|D_INTEGER_NOT_NEGATIVE, 0, 0, NULL,
71 "Number of history entries to save per category"
72 },
73 { NULL },
74 // clang-format on
75};
76
81{
83}
Convenience wrapper for the config headers.
bool cs_register_variables(const struct ConfigSet *cs, struct ConfigDef vars[])
Register a set of config items.
Definition: set.c:281
#define IP
Definition: set.h:54
@ E_TYPE_STRING
Data is a string.
Definition: definition.h:37
@ E_TYPE_NUMBER
Data is numeric.
Definition: definition.h:38
@ ED_GLOBAL
Global ED_GLO_ ExpandoDataGlobal.
Definition: domain.h:44
@ ED_HISTORY
History ED_HIS_ ExpandoDataHistory.
Definition: domain.h:45
Parse Expando string.
bool config_init_history(struct ConfigSet *cs)
Register history config variables - Implements module_init_config_t -.
Definition: config.c:80
struct ExpandoNode * node_padding_parse(const char *str, const char **parsed_until, int did, int uid, ExpandoParserFlags flags, struct ExpandoParseError *error)
Parse a Padding Expando - Implements ExpandoDefinition::parse() -.
Definition: node_padding.c:232
static struct ConfigDef HistoryVars[]
Config definitions for the command history.
Definition: config.c:56
static const struct ExpandoDefinition HistoryFormatDef[]
Expando definitions.
Definition: config.c:42
@ ED_HIS_MATCH
HistoryEntry.history.
Definition: lib.h:77
@ ED_HIS_NUMBER
HistoryEntry.num.
Definition: lib.h:78
Key value store.
Definition: set.h:64
Container for lots of config items.
Definition: set.h:252
Definition of a format string.
Definition: definition.h:52
#define D_PATH_FILE
Path is a file.
Definition: types.h:104
@ DT_NUMBER
a number
Definition: types.h:39
@ DT_BOOL
boolean option
Definition: types.h:32
@ DT_EXPANDO
an expando
Definition: types.h:34
@ DT_PATH
a path to a file/directory
Definition: types.h:40
#define D_INTEGER_NOT_NEGATIVE
Negative numbers are not allowed.
Definition: types.h:101
@ ED_GLO_PADDING_EOL
Padding to end-of-line.
Definition: uid.h:36
@ ED_GLO_PADDING_HARD
Hard Padding.
Definition: uid.h:37
@ ED_GLO_PADDING_SOFT
Soft Padding.
Definition: uid.h:38