An open API service indexing awesome lists of open source software.

https://github.com/erickzanardo/vim-xclip

Simple vim plugin that copy your current selection into your clipboard
https://github.com/erickzanardo/vim-xclip

Last synced: 4 months ago
JSON representation

Simple vim plugin that copy your current selection into your clipboard

Awesome Lists containing this project

README

        

## Deprecated

I don't use this plugin anymore, I found a better solution, install `vim-gnome` and add the following lines to you `.vimrc`

```
" Copy/Paste
vmap "+y
nmap "+p
```

Now you can use `Control+c` to `copy` and `Control+b` to `paste`.

# vim-xclip
Simple vim plugin that copy your current selection into your clipboard, it is basically a wrap for the xclip program

## Install

Use Vundle to install vim-xclip

```
Bundle 'erickzanardo/vim-xclip'
```