gvim: Easy copying into system clipboard

2019-03-12 01:20发布

I am using gVim on Ubuntu 10.10. I want to copy (yank) text to the system clipboard, so that the copied text is available in other applications.

This works with "+y. But I want to have it working with y.

I have tried to map y to "+y but then yy doesn't work anymore (since it produces "+y"+y).

I have also tried :set clipboard=unnamed but this works only the other direction: Text in the system clipboard I can paste with p.

5条回答
forever°为你锁心
2楼-- · 2019-03-12 01:28

Did you try to map with this command:

noremap y "+y

? This mapping contains a serious mistake: it maps y in normal, visual and operator-pending modes, while you need only normal and visual modes. Use the following:

nnoremap y "+y
vnoremap y "+y

Also try set clipboard=unnamedplus (it requires at least vim-7.3.74). set clipboard=unnamed works in both directions, but it sets «mouse» (*) register which is different from clipboard register (+).

查看更多
别忘想泡老子
3楼-- · 2019-03-12 01:47

All the mapping they talked about was just map simple copy y to "+y. But most the time, the problem is that even "+y doesn't work.

So you need to check whether certain flag is enabled in your system right now.

  1. Open your terminal, run vim –version | grep xterm_clipboard
  2. Check the mark before xterm_clipboard, if it’s a + (plus sign), go to step 4.
  3. If it’s a - (minus sign), run sudo apt-get install vim-gnome, then sudo update-alternatives –config vim, select vim.gnome in the list. (You should use the proper command that corresponds to your system) Run the command vim –version | grep xterm_clipboard, now you should be able to get + (plus sign). Otherwise, use Google to see what’s going on...
  4. Check whether your system clipboard uses + (plus sign) or * (star sign) register of vim, this is different from OS to OS, sometimes they’re equivalent. How to check? Easy, just copy some string from a website, then open vim and type :reg, check which register stores the string you just copied from system clipboard. (It shows + on my machine). If it’s a + (plus sign), add set clipboard=unnamedplus to your .vimrc. If it’s a * (star sign), add set clipboard=unnamed to your .vimrc.
  5. Try it out. Copy something in your vim, and then type :reg to check whether the system clipboard has changed. If it does, your will get whatever is in that register when you’re doing Ctrl-V outside of vim.
查看更多
男人必须洒脱
4楼-- · 2019-03-12 01:48

I have the very same idea as you, but I did it for years.

nnoremap yy yy"+yy
vnoremap y ygv"+y

Note that now yy command does two things: First it yank to register as normal, and then it yank to " register (system clipboard). The y command does the same thing. This is because I want to keep the multiple clipboard functionality of Vim.

For pasting from system clipboard, I used to have noremap gp "+p (global pasting), but now I use the excellent plugin Yankring.

查看更多
萌系小妹纸
5楼-- · 2019-03-12 01:51

Select some text in visual mode and it will be inserted into the system clipboard (the one where you middle-click to paste, I cannot recall the exact name).

If you set mouse=a you can use the mouse for visual selection like you would in many other applications.

查看更多
我欲成王,谁敢阻挡
6楼-- · 2019-03-12 01:53

In my case, I can sometimes copy from gvim to the system clipboard and sometimes not. I found a workaround, though I don't understand the underlying problem. If I copy text in another application (e.g. Notepad, as I am on Windows 7), then I can copy text from gvim and paste it elsewhere. It looks I need do this for each copy out of gvim.

查看更多
登录 后发表回答