Cut to the system clipboard from Vim on Ubuntu

后端 未结 8 1527
灰色年华
灰色年华 2020-12-02 13:34

I am using Ubuntu 12.04 Beta and Vim that has come with it. I am trying to use Vim to copy the content of a text file to Chrome browser. I have tried +, *

8条回答
  •  一整个雨季
    2020-12-02 14:01

    You can also add shortcuts to your vimrc

    # Copy and paste
    vmap  "+yi
    vmap  "+c
    vmap  c"+p
    imap  "+pa
    

    It will allow you to Copy by Ctrl + C and Paste by Ctrl + V

提交回复
热议问题