tmux list-keys
https://youtu.be/Y1MYmL8ZolE
Tmux list keys can be a useful tool to help remind you of what kebindings you
have setup. You can search for them and scroll just like in tmux copy-mode.
command line # [1]
You can call list-keys from the command line but the interface is not very
usable by itself. It might be nice to mix with grep or a pager in some
circumstances.
tmux list-keys
tmux command line # [2]
Running list-keys from within the tmux command line puts you into a much more
pleasant copy-mode.
list-keys
default keybinging # [3]
By default tmux comes with list-keys bound to prefix+?.
bind-key ? list-keys
list-keys man page # [4]
You can see the additional flags provided by tmux in the man page for
list-keys.
list-keys [-1aN] [-P prefix-string -T key-table] [key]
(alias: lsk)
List key bindings. There are two forms: the default lists keys as
bind-key commands; -N lists only keys with attached notes and shows
only the ke y and note for each key.
With the default form,...