通过ssh
同步tmux
剪贴板内容
通过ssh
连接远程服务器时,可以通过xclip
同步tmux
剪贴板内容。这需要在服务器上安装xclip
,且需要在ssh
远程连接时开启X11
。
此处附tmux
剪贴板调用xclip
的配置:
# Copy the current buffer to the system clipboard
bind C-c run -b "tmux save-buffer - | xclip -i -sel clipboard; tmux display-message \"Tmux buffer saved to clipboard\""
# Pull the content from xclip into a new tmux buffer and then pastes it into the selected tmux window or pane
bind C-v run "tmux set-buffer \"$(xclip -o -sel clipboard)\"; tmux paste-buffer"
注意:一定要在远程连接时开启X11
,否则xclip
无效。