Mutt 使用快捷方式隐藏标题

use*_*023 5 mutt

我试图找到一种在 Mutt 中定义快捷方式的方法,以在 Pager 视图中显示电子邮件的标题。恕我直言,标题使用了太多空间,我想隐藏,除了按特定快捷方式时。你知道这是否可能吗?

谢谢

cas*_*cas 7

h寻呼机中的钥匙有什么问题?

这在完整标题和“除草”最小标题之间切换。可以在您的~/.muttrcwithignoreunignore命令中定义“最小”标头集。例如,我的 ~/.muttrc 中有以下内容:

ignore *
unignore from date subject to cc
unignore x-mailer
unignore x-spam-status
unignore x-spam-report
Run Code Online (Sandbox Code Playgroud)

顺便说一句,h是默认绑定display-toggle-weed

bind index     h   "display-toggle-weed"
bind pager     h   "display-toggle-weed"
bind attach    h   "display-toggle-weed"
bind compose   h   "display-toggle-weed"
Run Code Online (Sandbox Code Playgroud)

man muttrc并搜索weed更多信息。