On 20/04/2014, Chris Bannister <[email protected]> wrote:
>>
>> bind index x quit
>> bind index q help
>>
>
> Unfortunately, that is still not what is being asked. :) For example,
> could you put the 'compose mail' command in the menu bar and show the
> binding?
>
OK you got me. I found this in the source code for curs_main.c (not
that I understand source code mind)
static const struct mapping_t IndexHelp[] = {
{ N_("Quit"), OP_QUIT },
{ N_("Del"), OP_DELETE },
{ N_("Undel"), OP_UNDELETE },
{ N_("Save"), OP_SAVE },
{ N_("Mail"), OP_MAIL },
{ N_("Reply"), OP_REPLY },
{ N_("Group"), OP_GROUP_REPLY },
{ N_("Help"), OP_HELP },
{ NULL, 0 }
};
which is clearly something to do with it but if you have to change
source code then you'd have to recompile also. I've not found a way to
do, say,
bind index L list-reply
it just does _not work. I'll have a scratch around anyhow and see if I
find anything.
Mo