programing

tmuxinator 프로젝트에서 창 비율 지정

nasanasas 2020. 9. 7. 08:14
반응형

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 %를 차지합니다 ... 이것을 지정하는 방법이 있습니까? 또는 문서에서 어디를보아야합니까? 어디에서도 찾을 수없는 것 같습니다.


레이아웃은 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. 그런 다음 layout:tmuxinator.conf에서 변경되지 않은 출력 을 사용할 수 있어야합니다.

따라서 요점의 출력을 기반으로 :

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

참고URL : https://stackoverflow.com/questions/9812000/specify-pane-percentage-in-tmuxinator-project

반응형