https://youtu.be/-ypY_-VmBKk
tmux copy-mode is a tmux mode that lets you scroll, search, copy, and jump your
way through a pane. There are a ton of keybindings for copy-mode, the main
ones you will need to know are / for searching down ? for searching up, n
for next item, space for starting a selection, and enter to copy the
selection. Arrow keys will be used for navigation unless you have specified vi mode, then it will be hjkl.
Default keybinding to get into copy mode is prefix+[.
bind-key [ copy-mode
If you are a vim user you will likely want to use vi style keys, add this to
your ~/.tmux.conf file to enable vi mode.
setw -g mode-keys vi
full list of copy-mode keybindings from the man page.
Command vi emacs
append-selection
append-selection-and-cancel A
back-to-indentation ^ M-m
begin-selection Space C-Space
bottom-line L
cancel q Escape
clear-selection Escape C-g
copy-end-of-line [<prefix>] D C-k
copy-line [<prefix>]
copy-pipe [<command>] [<prefix>]
copy-pipe-no...