Termio

fleetmux

Key Binding Cheat Sheet

All fleetmux keybindings in one place — sessions, windows, panes, agent jumps, copy mode, and plugin commands.

Prefix key: Ctrl-b (default). To switch to Ctrl-a, uncomment the three lines in ~/.config/tmux/tmux.conf.

Sessions

  • prefix + dDetach from session (session keeps running)
  • prefix + $Rename current session
  • prefix + sList / switch sessions
  • tmux lsList all sessions (shell)
  • tmux attach -t NAMEAttach to a session by name (shell)

Windows (tabs)

  • prefix + cNew window (opens in current path)
  • prefix + nNext window
  • prefix + pPrevious window
  • prefix + NUMBERSwitch to window by number
  • prefix + ,Rename current window
  • prefix + &Close current window

Panes (splits)

  • prefix + |Split vertically (side by side)
  • prefix + -Split horizontally (top / bottom)
  • prefix + h / j / k / lNavigate panes (vim-style: left / down / up / right)
  • prefix + zZoom / un-zoom current pane
  • prefix + xClose current pane
  • prefix + { / }Swap pane left / right

Agent-pane jumps

  • prefix + aJump to first Claude Code pane
  • prefix + gJump to first Gemini pane

Copy mode

  • prefix + [Enter copy mode (scroll with arrows or vim keys)
  • qExit copy mode
  • SpaceStart selection
  • EnterCopy selection (tmux-yank also copies to system clipboard)

Config & plugins

  • prefix + rReload config (~/.config/tmux/tmux.conf)
  • prefix + ?Open this cheat sheet
  • prefix + IInstall / update plugins (capital I, via TPM)
  • prefix + UUpdate plugins
  • prefix + alt-uUninstall unlisted plugins

Quick recipes

Start a new agent session

fleetmux-start
# or:
tmux new-session -s work

Run Claude Code in a pane

claude

Set pane title for Termio detection

printf '\033]2;claude\033\\'

Plugins installed

  • tmux-sensibleSane defaults everyone agrees on
  • tmux-resurrectSave and restore sessions across reboots
  • tmux-continuumAuto-save sessions every 15 min (restore on start)
  • tmux-yankCopy to system clipboard in copy mode