#include "config.h"#include <stdbool.h>#include <stddef.h>#include <stdio.h>#include "mutt/lib.h"#include "address/lib.h"#include "config/lib.h"#include "core/lib.h"#include "gui/lib.h"#include "mutt.h"#include "lib.h"#include "editor/lib.h"#include "history/lib.h"#include "key/lib.h"#include "menu/lib.h"#include "pattern/lib.h"#include "question/lib.h"#include "alias.h"#include "functions.h"#include "gui.h"#include "sort.h"
Include dependency graph for functions.c:Go to the source code of this file.
Functions | |
| static int | op_create_alias (struct AliasMenuData *mdata, int op) |
| create an alias from a message sender - Implements alias_function_t - | |
| static int | op_delete (struct AliasMenuData *mdata, int op) |
| delete the current entry - Implements alias_function_t - | |
| static int | op_exit (struct AliasMenuData *mdata, int op) |
| exit this menu - Implements alias_function_t - | |
| static int | op_generic_select_entry (struct AliasMenuData *mdata, int op) |
| select the current entry - Implements alias_function_t - | |
| static int | op_main_limit (struct AliasMenuData *mdata, int op) |
| show only messages matching a pattern - Implements alias_function_t - | |
| static int | op_main_tag_pattern (struct AliasMenuData *mdata, int op) |
| Tag messages matching a pattern - Implements alias_function_t -. | |
| static int | op_main_untag_pattern (struct AliasMenuData *mdata, int op) |
| Untag messages matching a pattern - Implements alias_function_t -. | |
| static int | op_query (struct AliasMenuData *mdata, int op) |
| query external program for addresses - Implements alias_function_t - | |
| static int | op_search (struct AliasMenuData *mdata, int op) |
| search for a regular expression - Implements alias_function_t - | |
| static int | op_sort (struct AliasMenuData *mdata, int op) |
| sort aliases - Implements alias_function_t - | |
| int | alias_function_dispatcher (struct MuttWindow *win, int op) |
| Perform a Alias function - Implements function_dispatcher_t -. | |
Variables | |
| const struct MenuFuncOp | OpAlias [] |
| Functions for the Alias Menu. | |
| const struct MenuFuncOp | OpQuery [] |
| Functions for the external Query Menu. | |
| const struct MenuOpSeq | AliasDefaultBindings [] |
| Key bindings for the Alias Menu. | |
| const struct MenuOpSeq | QueryDefaultBindings [] |
| Key bindings for the external Query Menu. | |
| static const struct AliasFunction | AliasFunctions [] |
| All the NeoMutt functions that the Alias supports. | |
Alias functions.
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 functions.c.
| const struct MenuFuncOp OpAlias[] |
Definition at line 60 of file functions.c.
| const struct MenuFuncOp OpQuery[] |
Functions for the external Query Menu.
Definition at line 76 of file functions.c.
| const struct MenuOpSeq AliasDefaultBindings[] |
Key bindings for the Alias Menu.
Definition at line 93 of file functions.c.
| const struct MenuOpSeq QueryDefaultBindings[] |
Key bindings for the external Query Menu.
Definition at line 110 of file functions.c.
|
static |
All the NeoMutt functions that the Alias supports.
Definition at line 441 of file functions.c.