1. ホーム
  2. tmux

[解決済み] tmuxinatorプロジェクトでペインパーセンテージを指定する

2022-12-13 15:52:25

質問

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%を占める...これを指定する方法はありますか? またはドキュメントのどこを見ればいいですか?どこにもないようです。

どのように解決するのですか?

レイアウトを指定するには layout: の行で指定します。ただし、プリセットの5つのレイアウト(main-verticalなど)に限定されるわけではありません。から のマニュアルページ :

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 . そして、その後に layout: の行を tmuxinator.conf で変更せずに出力します。

ということで、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