2

我尝试使用两个键为 tmux 创建一个绑定键,例如

bind-key Vs split-window "command00"

我尝试在我的~/.tmux.conf

bind-key V split-window "~/.tmux/tmux-v.sh"

和这个脚本tmux-v.sh

#!/bin/bash                                                                              
read -n 1 input                                                                          
case $input in                                                                           
    s ) tmux split-window 'vim +VimShell' ;;                                             
    S ) tmux new-window 'vim +VimShell' ;;                                               
    * ) tmux new-window "vim" ;;                                                         
esac 

这项工作,但这个解决方案拆分了窗口。

我尝试,command-promptrun-shell有必要按ENTER

有什么建议吗?

4

1 回答 1

1

尝试这个:

bind V send-keys "~/.tmux/tmux-v.sh" \; send-keys "Enter"
于 2012-07-10T01:51:23.703 回答