# Tmux aliases

This tmux.aliases.zsh file creates helpful shortcut aliases for many commonly used tmux (opens new window) commands.

The Tmux aliases are a collection of aliases that allow you to interact with the tmux command. Tmux is a tool which allows you to run multiple terminal sessions in a single window.

# Tmux

Tmux (opens new window) is a terminal multiplexer. It lets you switch easily between several programs in one terminal, detach them (they keep running in the background) and reattach them to a different terminal.

Alias Command Description
tm tmux Start tmux.
tma tmux attach-session Attach to a tmux session.
tmat tmux attach-session -t Attach to a tmux session with name.
tmks tmux kill-session -a Kill all tmux sessions.
tml tmux list-sessions List tmux sessions.
tmn tmux new-session Start a new tmux session.
tmns tmux new -s Start a new tmux session with name.
tms tmux new-session -s Start a new tmux session.