I want to copy a large section to the file in tmux. Then I enter the tmux vi mode, and copy the selected strings. However, the system clipboard is empty. How can I copy the selected strings to system clipboard? Thanks.
相关问题
- Markdown to clipboard as rich text
- Need a way to load image file into Mac clipboard u
- Can a memory page be moved by modifying the page t
- copy one row from a table to another and insert va
- Deep copy entity with NHibernate
相关文章
- How to add clipboard support to Matplotlib figures
- using Visual Studio to copy files?
- scala copy objects
- Java: How to read directory folder, count and disp
- Getting selected item in active window
- Postgres COPY TO / FROM A FILE as non superuser
- Showing the same QPushButton on multiple widgets
- Want to know Windows Clipboard Internals
Assuming this is a local instance of tmux, you could add a binding like this:
bind C-c run "tmux save-buffer - | clipboad_manager_of_your_choice"
Where you would fill in the manager of your choice (
xclip
,xsel
, if you are on macpbcopy
, etc)