resize-pane -Z- Maximize the pane to full screen. Use the same command to set it back to normal. CTRL+b+[up_arrow]Increase pane height. CTRL+b+[down_arrow]Decrease pane height. CTRL+b+[left_arrow]Increase pane width. CTRL+b+[right_arrow]Decrease pane width. ...
As stated above I don't know enough about the tmux internals to figure out why and if it is necessary to increase the minimum pane height when a border-status is enabled but since this is wrapped in a layout-check-if-statement this might also explain why -x works as expected. Member n...
Every terminal inside tmux belongs to one pane, this is a rectangular area which shows the content of the terminal inside tmux. Because each terminal inside tmux is shown in only one pane, the term pane can be used to mean all of the pane, the terminal and the program running inside it...
# s/\brun-shell\b\s+'cut\s+-c3-\s+(.+?)\s+\|\s+sh\s+-s\s+_new_window(_ssh)?\s+#\{pane_pid\}\s+#\{b:pane_tty\}([^}\n']*)'/run-shell 'cut -c3- \1 | sh -s _new_window\2 #\{pane_pid\} #\{b:pane_tty\} -c \\\"#\{pane_current_path\}\\\"\3'...
to resize-pane (-U -D -L -R -x -y flags) but also has -a and -A flags. -a sets the window to the size of the smallest client (what it would be if window-size was smallest) and -A the largest. For the same behaviour as force-width or force-height, use resize-window ...
bind -n M-Down select-pane -D # Look good set-option -g default-terminal "screen-256color" # Enable mouse support (works in iTerm) set -g -q mouse on bind -t vi-copy y copy-pipe "xclip -sel clip -i" # scrollback buffer size increase (this eats up memory, sometimes) ...
/* * Increase or decrease pane size. */static enum cmd_retval cmd_resize_pane_exec(struct cmd *, struct cmdq_item *);static void cmd_resize_pane_mouse_update(struct client *, struct mouse_event *);const struct cmd_entry cmd_resize_pane_entry = { .name = "resize-pane",...
set -g @floax-bind-menu 'P' # The default width and height of the floating pane set -g @floax-width '80%' set -g @floax-height '80%' # The border color can be changed, these are the colors supported by Tmux: # black, red, green, yellow, blue, magenta, cyan, white set ...
set -sg repeat-time 600 # increase repeat timeout set -s focus-events on set -g prefix2 C-a # GNU-Screen compatible prefix bind C-a send-prefix -2 set -q -g status-utf8 on # expect UTF-8 (tmux < 2.2) setw -q -g utf8 on set...
to resize-pane (-U -D -L -R -x -y flags) but also has -a and -A flags. -a sets the window to the size of the smallest client (what it would be if window-size was smallest) and -A the largest. For the same behaviour as force-width or force-height, use resize-window ...