让 bash history-complete-backwards/fowards 和 vi 模式与 tmux 配合使用

让 bash history-complete-backwards/fowards 和 vi 模式与 tmux 配合使用

我在 Ubuntu 12.04 上使用 bash,我的 inputrc 包含:

"\e[A": history-search-backward
"\e[B": history-search-forward
set show-all-if-ambiguous on
set completion-ignore-case on""

为了完成我的历史

set -o vi我还在我的 bash_profile 中将bash 置于 vi 模式。

我注意到,当我运行 tmux 时,如果 vi 模式已打开,tmux 不会使用我的 inputrc 配置。如果我关闭 vi 模式,它就可以正常工作。有没有办法同时使用这两种模式?

相关内容