2012-07-10 1 views
2

내가 내 ~/.tmux.confTMUX이 바인드 키

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

에두고 시도

bind-key Vs split-window "command00" 

처럼 두 개의 키와 TMUX에 대한 바인드 키을 시도하고이 스크립트 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

어떤 제안은?

답변

1

이 시도 :

bind V send-keys "~/.tmux/tmux-v.sh" \; send-keys "Enter"