NeoMutt  2024-04-25-1-g3de005
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
set.h File Reference

Parse the 'set' command. More...

#include <stdint.h>
#include "core/lib.h"
+ Include dependency graph for set.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Enumerations

enum  MuttSetCommand { MUTT_SET_SET , MUTT_SET_INV , MUTT_SET_UNSET , MUTT_SET_RESET }
 Flags for parse_set() More...
 

Functions

enum CommandResult parse_set (struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err)
 Parse the 'set' family of commands - Implements Command::parse() -.
 

Detailed Description

Parse the 'set' command.

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 set.h.

Enumeration Type Documentation

◆ MuttSetCommand

Flags for parse_set()

Enumerator
MUTT_SET_SET 

default is to set all vars

MUTT_SET_INV 

default is to invert all vars

MUTT_SET_UNSET 

default is to unset all vars

MUTT_SET_RESET 

default is to reset all vars to default

Definition at line 34 of file set.h.

35{
40};
@ MUTT_SET_INV
default is to invert all vars
Definition: set.h:37
@ MUTT_SET_SET
default is to set all vars
Definition: set.h:36
@ MUTT_SET_RESET
default is to reset all vars to default
Definition: set.h:39
@ MUTT_SET_UNSET
default is to unset all vars
Definition: set.h:38