On this page
libtmux.Window.select_layout
- Module
- libtmux
- Declared in
- Window
- Package
- libtmux
- Source
- src/libtmux/window.py
-
Select layout for window.
Wrapper for
$ tmux select-layout <layout>.- Parameters
-
-
layout ( str | None ) – String of the layout, 'even-horizontal', 'tiled', etc. Entering None (leaving this blank) is same as
select-layoutwith no layout. In recent tmux versions, it picks the most recently set layout. 'even-horizontal' Panes are spread out evenly from left to right across the window. 'even-vertical' Panes are spread evenly from top to bottom. 'main-horizontal' A large (main) pane is shown at the top of the window and the remaining panes are spread from left to right in the leftover space at the bottom. 'main-vertical' Similar to main-horizontal but the large pane is placed on the left and the others spread from top to bottom along the right. 'tiled' Panes are spread out as evenly as possible over the window in both rows and columns. 'custom' Custom dimensions (see tmux(1) manpages). -
spread ( bool | None ) – Spread panes out evenly (
-Eflag). added 0.56 -
next_layout ( bool | None ) – Move to the next layout (
-nflag). added 0.56 -
previous_layout ( bool | None ) – Move to the previous layout (
-pflag). added 0.56
-
- Returns
-
WindowSelf, for method chaining. - Raises
-
-
libtmux.exc.LibTmuxException – If tmux returns an error.
-
ValueError – If both *layout* and a flag (*spread*, *next_layout*, *previous_layout*) are specified.
-
0 declared, 0 inherited