summaryrefslogtreecommitdiffstats
path: root/functions.h
diff options
context:
space:
mode:
Diffstat (limited to 'functions.h')
-rw-r--r--functions.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/functions.h b/functions.h
index e2f3e4a8..e8162819 100644
--- a/functions.h
+++ b/functions.h
@@ -296,6 +296,10 @@ struct binding_t OpCompose[] = {
{ "pgp-menu", OP_COMPOSE_PGP_MENU, "p" },
#endif
+#ifdef MIXMASTER
+ { "mix", OP_COMPOSE_MIX, "M" },
+#endif
+
{ NULL, 0, NULL }
};
@@ -356,3 +360,16 @@ struct binding_t OpPgp[] = {
{ NULL, 0, NULL }
};
#endif /* _PGPPATH */
+
+
+#ifdef MIXMASTER
+struct binding_t OpMix[] = {
+ { "accept", OP_MIX_USE, M_ENTER_S },
+ { "append", OP_MIX_APPEND, "a" },
+ { "insert", OP_MIX_INSERT, "i" },
+ { "delete", OP_MIX_DELETE, "d" },
+ { "chain-prev", OP_MIX_CHAIN_PREV, "<left>" },
+ { "chain-next", OP_MIX_CHAIN_NEXT, "<right>" },
+ { NULL, 0, NULL }
+};
+#endif /* MIXMASTER */