Bash – find all tmux options

bashterminaltmux

Where can I find a list of all tmux options? I know of tmux list-keys -t which shows you various keybindings and their commands, but I'm looking for a comprehensive list of all possible tmux commands.

Best Answer

I have memorized tmux list-keys | less and tmux show -gw | less (I also check just -g, -w, and -s when I think I'm missing something).

That usually gives me anything I need to know, or set. I use man tmux then /OPTIONS for more.

Also remember that any command you would issue to Ctrl+b, : can also be passed to the tmux cli/cmd though tab-completion is a trick to set up there.

Related Question