Can vim use the system clipboard(s) by default?

前端 未结 3 401
臣服心动
臣服心动 2020-12-12 11:53

I am running into several problems because vim\'s tabs are, for the lack of a better term, god awful. I want to start using multiple Gnome tabs instead, each with a differen

3条回答
  •  醉酒成梦
    2020-12-12 12:26

    Possible workaround:

    "Ctrl-c to copy in + buffer from visual mode
    vmap  "+y
    
    "Ctrl-p to paste from the + register in cmd mode
    map  "+p
    
    "Ctrl-p to paste from the + register while editing
    imap  
    

提交回复
热议问题