我设置了 mutt 来查找我的 OS X 联系人,当我撰写新邮件时,开始输入姓名并点击<TAB>
或<C> - t
。这很有效,给我一个带有建议的列表。
set query_command = "contacts -Sf '%eTOKEN%n' '%s' | sed -e 's/TOKEN/\t/g'"
bind editor <Tab> complete-query
bind editor ^T complete
当我在tmux会话,命令不起作用。我确实尝试使用 进行调试mutt -d 2
,但没有错误。
tmux 是否阻止了某些按键或阻止 mutt 运行 shell 命令?
答案1
这个问题与此有点相关https://robots.thoughtbot.com/how-to-copy-and-paste-with-tmux-on-mac-os-x
如果你安装了 Homebrew,你可以执行以下操作来解决你的问题:
- $
brew install reattach-to-user-namespace
- 将其添加到你的 tmux 配置文件中
set-option -g default-command "reattach-to-user-namespace -l zsh"
(将 zsh 替换为你选择的 shell)
您从这里就可以出发了!