Copy and Paste Between Vim Selection and Tmux
Tags:
Bottom Line: Use this mapping to copy and paste between vim selection and tmux
I like to keep the system clipboard and tmux clipboard separate, especially since I’m frequently working on headless machines that have tmux but no system clipboard (and vim is therefore compiled without clipboard support).
I used the mappings from this Reddit comment for a while, which worked well, but they only yanked whole lines due to how vim filters work.
I’ve modified it slightly so that it now faithfully respects the vim selection, including visual block mode or single words instead of just full lines. I’m quite happy with how it works now.
With these lines in your vimrc, you can make a visual selection in vim and
while still in visual mode use <leader>tc
to copy your selection to the tmux
clipboard / buffer. When in normal mode, <leader>tp
will paste your tmux
buffer into vim at the current cursor location and then restore the cursor to
the beginning of your pasted content. Both of these preserve your system
clipboard, but they will overwrite your @0
register. This makes it so you can
access the copied or pasted content with e.g. "0p
, like you might for other
yanked text.
vnoremap <leader>tc y<cr>:call system("tmux load-buffer -", @0)<cr>gv
nnoremap <leader>tp :let @0 = system("tmux save-buffer -")<cr>"0p<cr>g;
I use visual mode frequently, but vim gurus might scoff at this habit and note
that the mapping above requires a visual selection to work, which means that
you can’t use it to yank to tmux with a movement (e.g. y3j
to yank the next 3
lines). If this were really important, it would probably be easy to modify the
copy mapping to something like (untested) nnoremap <leader>tc :call system("tmux
load-buffer -", @0)
, which would just copy the most recently yanked text once
one is back in normal mode after a yank. The advantage here would be that
normal vim movement-yank would work without first requiring a visual selection,
the disadvantage is that if one already has a visual selection it would require
two steps (yank then tc
) instead of just one.