| _) | | _` | \ \ / _ \ | | __ \ _ \ __| _ \ __| __ \ ( | \ \ / __/ | | | | ( | | __/ ( | | | \__,_| \_/ \___| _| _| _| _| \___/ _) \__| \___| \___| _| |_|

tmux: 10 comandos para voar no terminal

• tags: linuxtmuxprodutividade


Resumo: um guia rápido para dominar janelas/panes no tmux e manter sessões persistentes em servidores remotos — produtividade turbo no terminal.

Por quê: manter sessões no servidor, reconectar sem perder contexto, separar workspaces.

Atalho base: Ctrl-b é o prefixo.

  • Ctrl-b c — nova janela
  • Ctrl-b % — split vertical
  • Ctrl-b " — split horizontal
  • Ctrl-b , — renomear janela
  • Ctrl-b n/p — próxima/anterior
  • Ctrl-b ddetach (desconectar sem matar)

One-liner de ouro:

tmux new -s work \; split-window -v \; split-window -h \; select-pane -t 0

Cria layout de 3 panes instantaneamente.