我在设置 neomutt 绑定时遇到了一个奇怪的问题。
我正在尝试设置 t + 另一个键来将标签分配给不多的消息。但是,每当我启动 neomutt 时,它都会抱怨:
binding 't' will alias 'td' Before,try: 'bind index td noop' neomutt.org/guide/configuration.html#bind-warnings
这是我的 neomuttrc 的相关部分:
bind index t noop
macro index tx "<modify-labels>!star<enter>" "Toggle 'star'"
macro index tt "<modify-labels>!todo<enter>" "toggle 'todo' tag"
macro index td "<modify-labels>+done -todo" "Mark as 'done'"
我也尝试过unbind index t
,从那以后,neomutt 建议添加 bind index td noop
:
bind index td noop
bind index tx noop
bind index tt noop
之后bind index t noop
,即使我认为没有必要。无论如何,每当我加载 neomutt 时,我仍然会收到那个烦人的消息。
我应该明确指出,在警告/错误消息之后,neomutt 继续正常工作并正确标记/取消标记消息。
谁能给我提示一下我的配置中的任何潜在错误?