NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
sort.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_ALIAS_SORT_H
24
#define MUTT_ALIAS_SORT_H
25
29
enum
AliasSortType
30
{
31
ALIAS_SORT_ALIAS
,
32
ALIAS_SORT_EMAIL
,
33
ALIAS_SORT_NAME
,
34
ALIAS_SORT_UNSORTED
,
35
};
36
37
#endif
/* MUTT_ALIAS_SORT_H */
AliasSortType
AliasSortType
Methods for sorting Aliases/Queries.
Definition
sort.h:30
ALIAS_SORT_UNSORTED
@ ALIAS_SORT_UNSORTED
Sort by the order the Aliases were configured.
Definition
sort.h:34
ALIAS_SORT_NAME
@ ALIAS_SORT_NAME
Sort by Real Name.
Definition
sort.h:33
ALIAS_SORT_EMAIL
@ ALIAS_SORT_EMAIL
Sort by Email Address.
Definition
sort.h:32
ALIAS_SORT_ALIAS
@ ALIAS_SORT_ALIAS
Sort by Alias short name.
Definition
sort.h:31