Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将一大段复制到 tmux 中的文件中。然后我进入 tmux vi 模式,复制选中的字符串。但是,系统剪贴板是空的。如何将选定的字符串复制到系统剪贴板?谢谢。
假设这是 tmux 的本地实例,您可以添加这样的绑定: bind C-c run "tmux save-buffer - | clipboad_manager_of_your_choice" 您将在哪里填写您选择的管理器(如果您在 mac 上,则为xclip,等)xselpbcopy
bind C-c run "tmux save-buffer - | clipboad_manager_of_your_choice"
xclip
xsel
pbcopy