NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
module.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 "core/lib.h"
33
34extern const struct Command KeyCommands[];
35
39static bool key_commands_register(struct NeoMutt *n, struct CommandArray *ca)
40{
42}
43
47const struct Module ModuleKey = {
49 "key",
50 NULL, // init
51 NULL, // config_define_types
52 NULL, // config_define_variables
54 NULL, // gui_init
55 NULL, // gui_cleanup
56 NULL, // cleanup
57};
bool commands_register(struct CommandArray *ca, const struct Command *cmds)
Add commands to Commands array.
Definition command.c:51
Convenience wrapper for the core headers.
const struct Module ModuleKey
Module for the Key library.
Definition module.c:47
const struct Command KeyCommands[]
Key Binding Commands.
Definition init.c:52
static bool key_commands_register(struct NeoMutt *n, struct CommandArray *ca)
Register NeoMutt Commands - Implements Module::commands_register()
Definition module.c:39
@ MODULE_ID_KEY
ModuleKey, Key mappings
Definition module_api.h:73
Container for Accounts, Notifications.
Definition neomutt.h:41