O tmux precisa de ajuda de xsel
(ou outro gerenciador de área de transferência X).
Eu uso xsel
e adiciono isso ao meu ~/.tmux.conf
, que permitirá CTRL + B CTRL + C (copiar) e CTRL + B CTRL + X (colar) de / para a área de transferência X (PRIMARY) na buffer de seleção tmux (e vice-versa).
# turn on clipboard
set -g set-clipboard on
# copy tmux's selection buffer into the X clipboard selection
bind-key C-c run-shell "tmux show-buffer | xsel -b -i" \; \
display-message "Clipboard buffer copied to xsel ..."
# copy X clipboard selection into tmux's selection buffer
bind-key C-x run-shell "xsel -b -o | tmux load-buffer -" \; \
display-message "Clipboard buffer copied from xsel ..."