On 2017-11-02 14:14, Chris Green wrote: > What causes the message "Tagging is not supported."?
Looking at the source, it appears that it is triggered if you do an
OP_TAG and either you're not in the tag menu or there's a
(transient?) dialog:
case OP_TAG:
if (menu->tag && !menu->dialog)
... // do tagging stuff
else
mutt_error(_("Tagging is not supported."));
It's the only place this error appears in the source I have here.
-tkc
