I would like to synchronize the system and nvim clipboards so I don't have to do anything extra to copy and paste. I want to do (since I am on MacOS) command c
to copy and command v
to paste, inside or outside of Neovim. I want to easily paste external text into Neovim, and copy Neovim text externally.
I am new to Neovim, so I may be missing some obvious fundamental concept.
I have tried all sorts of existing solutions. :put +
is the most stable way to paste into nvim so far. Other ways (I have tried many) have pasted only part of the text, done nothing, or pasted just from the nvim internal clipboard. For copying, "+y
works, but takes much longer to type compared to command c
. I can't think of any reason I would want a separate clipboard within nvim, and I very commonly want the same keyboard within nvim.