我是一个刚接触tmux的新手。 当我运行这个脚本时,它在send-key功能上失败了。 我的脚本如下。
set -x
# Creates a session with a name 'todos'
tmux new-session -s todos -n backend -d
# cd to the project directory and open vim editor
tmux send-keys -t todos 'cd ~/projects/explore/mongo-app/' C-m
tmux send-keys -t todos 'nvim' C-m
set +x
当我调试这个脚本时,它显示它在send-keys功能上失败了,如下图。
++ tmux new-session -s todos -n backend -d
++ tmux send-keys -t todos 'cd ~/projects/explore/mongo-app/' C-m
server exited unexpectedly
++ tmux send-keys -t todos nvim C-m
我在Ubuntu 20.04上使用tmux 3.0a。 我如何解决这个问题?
这似乎是一个bug,请尝试tmux 3.1,如果问题仍然存在,请在以下地址开一个问题 https:/github.comtmuxtmuxissues。.