2012-03-21 4 views
78

tmuxinator에서 창 비율을 어떻게 지정합니까?tmuxinator 프로젝트에서 창 비율 지정

예 :

project_name: ad_dev 
project_root: ~/Programming/WWW/Rails/projects/ApparelDreamDev 
rvm: [email protected]_dev 
pre: SQL 
tabs: 
    - editor: 
     layout: main-vertical 
     panes: 
     - vim 75% 
     - #empty, will just run plain bash 
     - top 

예 : Vim은 창 화면의 75 %를 취할 것입니다 ...이 지정하는 방법이있다? 또는 설명서의 어디에 표시해야합니까? 어디서나 찾을 수없는 것 같습니다.

답변

164

레이아웃은 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 
+0

tmux list-windows는 다음 출력 (https://gist.github.com/2324001)을주었습니다. 출력에 따라 tmuxinator 배치 선은 어떻게 보이나요? – Goles

+3

처음에는'tmux list-windows' 명령을 어떻게 실행하는지 이해하지 못했습니다. 그렇다면 나는 그것이 분명하다는 것을 깨달았다. 1) tmux 세션 외부 (새 콘솔 창을 분리하거나 열어) 다른 쉘 명령과 같은 명령을 실행하십시오. 2) tmux 내에 명령 모드 ('PREFIX :')를 입력하고'list-windows' 명령을 사용하십시오. – caspyin

+1

'''list-panees ''에 나열된 것과 같은 개수의 창 '명령은''''pane :'''절에서 지정되어야합니다. 예를 들어, 6 개의 창을 정의한 경우 6 개의 줄이'''pane :'''아래에 나타나야합니다.이 창에는 아무 것도하지 말라는'''-''' 만 포함됩니다. 그렇지 않으면 윈도우는'''list-panees''의 출력에 의해 설명 된 것처럼 올바르게 포맷되지 않을 것입니다. –