Reputation: 277
I am running KDE Neon (Ubuntu) and want to be able to yank and copy to/from system clipboard. The standard vim application that is preinstalled on Ubuntu systems does not support this.
What version of VIM should I run to get this support? I want to run VIM in the terminal, so gvim is not an option. I have been looking at nvim, but it grabs .vim and .vimrc from somwhere else???
Upvotes: 1
Views: 1072
Reputation: 2439
Consider switch to neovim.
See also https://vi.stackexchange.com/questions/30787/install-vim-with-clipboard-support-but-without-gvim
Upvotes: 0
Reputation: 196691
$ sudo apt-get install vim-gtk
will give you a Vim built against X with the +clipboard
feature.
Upvotes: 5