我试图找到一种在 Mutt 中定义快捷方式的方法,以在 Pager 视图中显示电子邮件的标题。恕我直言,标题使用了太多空间,我想隐藏,除了按特定快捷方式时。你知道这是否可能吗?
谢谢
h
寻呼机中的钥匙有什么问题?
这在完整标题和“除草”最小标题之间切换。可以在您的~/.muttrc
withignore
和unignore
命令中定义“最小”标头集。例如,我的 ~/.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
更多信息。