当我使用 开始在 Mutt 中搜索时/,我可以使用 轻松转到下一个搜索结果n。
但如果我想去其他方向并查看之前的搜索结果,即之前匹配的电子邮件?
有键绑定吗?在 Vim 中,这是N.
答案1
在 Mutt 1.11.4 中,没有用于获取上一个搜索结果的键绑定,但很容易添加一个muttrc
:
bind index N search-opposite
# Ctrl-n toggles whether a mail is considered new or not
bind index \cn toggle-new
因为N默认情况下映射到toggle-new
,所以我将其重新映射到Ctrl+ n。
?既然我们已经做到了,我们可以通过映射开始向后搜索(默认映射到Esc+ /)来使 Mutt 的行为更像 Vim 。
bind index ? search-reverse
# ? used to show help, so we remap that
bind index <F1> help