web-dev-qa-db-ja.com

tmuxinatorプロジェクトでペインの割合を指定する

どのように私はtmuxinatorにペインの割合を指定することができますか?

例えば:

 project_name: ad_dev
 project_root: ~/Programming/WWW/Rails/projects/ApparelDreamDev
 rvm: Ruby-1.9.2-p290@apparel_dev
 pre: SQL
 tabs:
   - editor:
       layout: main-vertical
       panes:
         - vim 75%  
         - #empty, will just run plain bash
         - top

例:vimペインは画面の75%を占めるでしょう...これを指定する方法はありますか?または私はどこのドキュメント内になりますか?どこでもそれを見つけるように見えることはできません。

88
Goles

レイアウトはlayout:行で指定する必要があります。ただし、5つのプリセットレイアウト(メイン垂直など)に限定されません。 manページ から:

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を実行します。そして、tmuxinator.confで変更されていない出力からlayout:行を使用できるはずです。

したがって、Gistからの出力に基づいて:

0: tmux [208x73] [layout b147,208x73,0,0[208x62,0,0,208x10,0,63{104x10,0,63,103x10,105,63}]] (active)

Tmuxinator confファイルの関連セクションは次のとおりです。

  - 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
183
Hamish Downer