TMUX

This Project for CommandLine Applications. includes configs and documentation. https://mrinjamul.github.io/unTutorials

TMUX

Shortcuts:

Commands:

Commands inside tmux :

ctrl + b then type

new session : : new [session_name]

Resize window:

:resize-pane -D [cell_size] (Resizes the current pane down by 1 cell)

:resize-pane -U [cell_size] (Resizes the current pane upward by 1 cell)

:resize-pane -L [cell_size] (Resizes the current pane left by 1 cell)

:resize-pane -R [cell_size] (Resizes the current pane right by 1 cell)

Turn on all pane sync in tmux:

`:setw synchronize-panes on`

Turn off pane sync in tmux:

`:setw synchronize-panes off`