1.1 KiB
1.1 KiB
vim-bracketed-paste enables transparent pasting into vim. (i.e. no more set paste
!)
Installation
I recommend using pathogen. Once you have installed pathogen:
cd ~/.vim/bundle
git clone https://github.com/ConradIrwin/vim-bracketed-paste
Otherwise just copy-paste everything from plugin/bracketed-paste.vim into your ~/.vimrc
.
Usage
You need to be using a modern xterm-compatible terminal emulator (xterm, urxvt, and iTerm2 are known to work, there are probably more) that supports [bracketed paste mode](http://www.xfree86.org/current/ctlseqs.html#The Alternate Screen Buffer).
Then whenever you paste into your terminal emulator using command+v
or shift+insert
, vim will automatically set paste
for you.
Credit
The code for this plugin was taken from Chis Page's answer to a StackOverflow question, I just packaged it.