レイアウトはlayout:
行に指定する必要があります。しかし、5つのプリセットレイアウト(主縦型など)に限定されません。 man pageから:
In addition, select-layout may be used to apply a previously used layout -
the list-windows command displays the layout of each window in a form
suitable for use with select-layout. For example:
$ tmux list-windows
0: ksh [159x48]
layout: bb62,159x48,0,0{79x48,0,0,79x48,80,0}
$ tmux select-layout bb62,159x48,0,0{79x48,0,0,79x48,80,0}
tmux automatically adjusts the size of the layout for the current window
size. Note that a layout cannot be applied to a window with more panes
than that from which the layout was originally defined.
まず、あなたがそれを好きどれだけあなたのレイアウトを設定する - それは右あなたのためだけになるまで、あなたはresize-pane
と幅を調整することができます。その後、tmux list-windows
を実行します。
0: tmux [208x73] [layout b147,208x73,0,0[208x62,0,0,208x10,0,63{104x10,0,63,103x10,105,63}]] (active)
tmuxinatorのconfファイルの関連セクションは次のようになります。そして、あなたはだからあなたの主旨からの出力に基づいてtmuxinator.conf
で変更されていない出力からlayout:
ラインを使用することができるはずです。
- editor:
layout: b147,208x73,0,0[208x62,0,0,208x10,0,63{104x10,0,63,103x10,105,63}]
panes:
- vim
- #empty, will just run plain bash
- top
tmux list-windowsは私に次の出力(https://gist.github.com/2324001)を与えました。その出力に合わせてtmuxinatorのレイアウト行はどのように見えますか? – Goles
最初に 'tmux list-windows'コマンドを実行する方法を理解できませんでした。それから私はそれが明白であることに気づいた1)tmuxセッションの外(新しいコンソールウィンドウを切り離すか開く)は、他のシェルコマンドと同様にコマンドを実行します。 2)tmux内にコマンドモード( 'PREFIX:')を入力し、 'list-windows'コマンドを使用してください。 – caspyin
私はそれが' '' 'list-panees''でリストアップされたのと同じ数のペイン'コマンドは' '' '' 'pane ':' 'セクションの下で指定する必要があります。例えば、6つのペインが定義されている場合、 '' 'ペイン:' ''の下には6行しか表示されません(このペインには何もしません)。そうでなければ、ウィンドウは '' 'list-panees''の出力で説明されているように正しくフォーマットされません。 –