如何在Wanderlust中查看备用哑剧内容?
我的所有邮件都以HTML版本的形式出现,有时我宁愿看到纯文本版本,即使我不想失去完全看到HTML版本的能力。
答案 0 :(得分:1)
我有(在〜/ .wl中)
(setq mime-view-type-subtype-score-alist
'(((text . plain) . 4)
((text . enriched) . 3)
((text . html) . 2)
((text . richtext) . 1)))
设置默认优先级(我更喜欢纯文本,但如果你想在大多数时候想要html,只需更改值。)
然后,当我想看到备用版本时,我用(在摘要缓冲区中)显示所有消息部分
C-c m runs the command wl-summary-toggle-mime-buttons
显示为[1 <text/plain; UTF-8 (7bit)>]
和[2 <text/html; UTF-8 (quoted-printable)>]
跳转到消息缓冲区,并将光标放在相应的按钮上,
C-c C-t C-c runs the command mime-preview-toggle-content
切换特定部分的显示。