看起來“-p”大小更長可以與 tmux 配合使用。有什麼解決方法嗎?

看起來“-p”大小更長可以與 tmux 配合使用。有什麼解決方法嗎?

看起來-ptmux 可以調整更長的大小。

在最近的更新之前,該腳本有 4 個窗格;現在,只能看到 3 個窗格。該行似乎已停止工作:

tmux split-window -p 27

腳本使用右半部分割 50/50,左半部分割 73/27。作業系統是Mac,最新的。與brew一起安裝,版本3.4

有什麼解決方法嗎?

!/bin/sh
    
tmux new-session  -s "Local" -d
tmux send-keys "" C-m ;  
tmux split-window -h  
tmux send-keys "  " C-m
tmux split-window -v  
tmux send-keys " " C-m
 
tmux selectp -t 0  
tmux split-window -p 27  
tmux send-keys " "  
tmux -2 attach-session -d 

相關內容