45 {
46
48 N_(
"Change NeoMutt's current working directory"),
49 N_(
"cd [ <directory> ]"),
50 "configuration.html#cd" },
52 N_(
"Define colors for the user interface"),
53 N_(
"color <object> [ <attribute> ... ] <fg> <bg> [ <regex> [ <num> ]]"),
54 "configuration.html#color" },
56 N_(
"Print a message to the status line"),
58 "advancedusage.html#echo" },
60 N_(
"Stop reading current config file"),
62 "optionalfeatures.html#ifdef" },
64 N_(
"Conditionally include config commands if symbol defined"),
65 N_(
"ifdef <symbol> '<config-command> [ <args> ... ]'"),
66 "optionalfeatures.html#ifdef" },
68 N_(
"Conditionally include if symbol is not defined"),
69 N_(
"ifndef <symbol> '<config-command> [ <args> ... ]'"),
70 "optionalfeatures.html#ifdef" },
72 N_(
"Define a list of mailboxes to watch"),
73 N_(
"mailboxes [ -label <label> ] [ -notify ] [ -poll ] <mailbox> [ ... ]"),
74 "configuration.html#mailboxes" },
76 N_(
"Deprecated: Use `color` instead"),
77 N_(
"mono <object> <attribute> [ <pattern> | <regex> ]"),
78 "configuration.html#color-mono" },
80 N_(
"Define a list of labelled mailboxes to watch"),
81 N_(
"named-mailboxes [ -notify ] [ -poll ] <label> <mailbox> [ ... ]"),
82 "configuration.html#mailboxes" },
84 N_(
"Reset a config option to its initial value"),
85 N_(
"reset <variable> [ <variable> ... ]"),
86 "configuration.html#set" },
88 N_(
"Set a config variable"),
89 N_(
"set [ no | inv | & ] <variable> [?] | <variable> [=|+=|-=] <value> [...]"),
90 "configuration.html#set" },
92 N_(
"Set an environment variable"),
93 N_(
"setenv { <variable>? | <variable>=<value> }"),
94 "advancedusage.html#setenv" },
96 N_(
"Read and execute commands from a config file"),
97 N_(
"source <filename> [ <filename> ... ]"),
98 "configuration.html#source" },
100 N_(
"Add address to the list of subscribed mailing lists"),
101 N_(
"subscribe [ -group <name> ... ] <regex> [ ... ]"),
102 "configuration.html#lists" },
104 N_(
"Toggle the value of a boolean/quad config option"),
105 N_(
"toggle <variable> [ ... ]"),
106 "configuration.html#set" },
108 N_(
"Remove a `color` definition"),
109 N_(
"uncolor <object> { * | <pattern> ... }"),
110 "configuration.html#color" },
112 N_(
"Remove mailboxes from the watch list"),
113 N_(
"unmailboxes { * | <mailbox> ... }"),
114 "configuration.html#mailboxes" },
116 N_(
"Deprecated: Use `uncolor` instead"),
117 N_(
"unmono <object> { * | <pattern> ... }"),
118 "configuration.html#color-mono" },
120 N_(
"Reset a config option to false/empty"),
121 N_(
"unset <variable> [ <variable> ... ]"),
122 "configuration.html#set" },
124 N_(
"Unset an environment variable"),
125 N_(
"unsetenv <variable>"),
126 "advancedusage.html#setenv" },
128 N_(
"Remove address from the list of subscribed mailing lists"),
129 N_(
"unsubscribe { * | <regex> ... }"),
130 "configuration.html#lists" },
132 N_(
"Show NeoMutt version and build information"),
134 "advancedusage.html#version" },
135
137
138};
#define CF_NO_FLAGS
No flags are set.
@ CMD_SUBSCRIBE
:subscribe
@ CMD_UNSUBSCRIBE
:unsubscribe
@ CMD_MAILBOXES
:mailboxes
@ CMD_UNMAILBOXES
:unmailboxes
@ CMD_NAMED_MAILBOXES
:named-mailboxes
enum CommandResult parse_subscribe(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'subscribe' command - Implements Command::parse() -.
enum CommandResult parse_finish(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'finish' command - Implements Command::parse() -.
enum CommandResult parse_echo(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'echo' command - Implements Command::parse() -.
enum CommandResult parse_cd(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'cd' command - Implements Command::parse() -.
enum CommandResult parse_uncolor(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'uncolor' command - Implements Command::parse() -.
enum CommandResult parse_unmono(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'unmono' command - Implements Command::parse() -.
enum CommandResult parse_setenv(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'setenv' and 'unsetenv' commands - Implements Command::parse() -.
enum CommandResult parse_mono(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'mono' command - Implements Command::parse() -.
enum CommandResult parse_version(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'version' command - Implements Command::parse() -.
enum CommandResult parse_unmailboxes(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'unmailboxes' command - Implements Command::parse() -.
enum CommandResult parse_ifdef(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'ifdef' and 'ifndef' commands - Implements Command::parse() -.
enum CommandResult parse_unsubscribe(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'unsubscribe' command - Implements Command::parse() -.
enum CommandResult parse_mailboxes(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'mailboxes' command - Implements Command::parse() -.
enum CommandResult parse_source(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'source' command - Implements Command::parse() -.
enum CommandResult parse_set(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'set' family of commands - Implements Command::parse() -.
enum CommandResult parse_color(const struct Command *cmd, struct Buffer *line, const struct ParseContext *pc, struct ParseError *pe)
Parse the 'color' command - Implements Command::parse() -.