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
- Host: GitHub
- URL: https://github.com/erickzanardo/vim-xclip
- Owner: erickzanardo
- License: mit
- Archived: true
- Created: 2015-09-08T21:23:04.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-30T13:29:21.000Z (over 9 years ago)
- Last Synced: 2024-10-25T15:30:17.680Z (7 months ago)
- Language: VimL
- Homepage:
- Size: 137 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
```