"Nvim 0.10 can now use the OSC 52 escape sequence to write to (or read from) the system clipboard." This is a big deal! (it shouldn't be, but it is) My main complaints about vim/emacs in the past was at the sheer complexity of getting something that should not even be a concern (clipboard integration) working properly, when other text/code editors did not have this problem at all. Searching online, it seems like tmux…
What problems have you encountered? I have the following shortcuts in my .vimrc:
vnoremap y "*y
noremap p "*p
vnoremap c "+y
noremap v "+p
Space + y/p is the copying/pasting from/to the "primary selection" (the mouse middle click). Space + c/v is copying/pasting from/to the regular ctrl+c/ctrl+v clipboard.This... just works for me?