NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
config.c
Go to the documentation of this file.
1
22
28
29#include "config.h"
30#include <stdbool.h>
31#include <stddef.h>
32#include "config/lib.h"
33
37struct ConfigDef GuiVars[] = {
38 // clang-format off
39 { "beep", DT_BOOL, true, 0, NULL,
40 "Make a noise when an error occurs"
41 },
42 { "collapse_flagged", DT_BOOL, true, 0, NULL,
43 "Prevent the collapse of threads with flagged emails"
44 },
45 { "collapse_unread", DT_BOOL, true, 0, NULL,
46 "Prevent the collapse of threads with unread emails"
47 },
48 { "duplicate_threads", DT_BOOL, true, 0, NULL,
49 "Highlight messages with duplicated message IDs"
50 },
51 { "hide_limited", DT_BOOL, false, 0, NULL,
52 "Don't indicate hidden messages, in the thread tree"
53 },
54 { "hide_missing", DT_BOOL, true, 0, NULL,
55 "Don't indicate missing messages, in the thread tree"
56 },
57 { "hide_thread_subject", DT_BOOL, true, 0, NULL,
58 "Hide subjects that are similar to that of the parent message"
59 },
60 { "hide_top_limited", DT_BOOL, false, 0, NULL,
61 "Don't indicate hidden top message, in the thread tree"
62 },
63 { "hide_top_missing", DT_BOOL, true, 0, NULL,
64 "Don't indicate missing top message, in the thread tree"
65 },
66 { "narrow_tree", DT_BOOL, false, 0, NULL,
67 "Draw a narrower thread tree in the index"
68 },
69 { "sort_re", DT_BOOL, true, 0, NULL,
70 "Whether $reply_regex must be matched when not $strict_threads"
71 },
72 { "strict_threads", DT_BOOL, false, 0, NULL,
73 "Thread messages using 'In-Reply-To' and 'References' headers"
74 },
75 { "thread_received", DT_BOOL, false, 0, NULL,
76 "Sort threaded messages by their received date"
77 },
78
79 { NULL },
80 // clang-format on
81};
Convenience wrapper for the config headers.
struct ConfigDef GuiVars[]
Config definitions for the Gui library.
Definition config.c:37
@ DT_BOOL
boolean option
Definition types.h:32