Skip to content

Instantly share code, notes, and snippets.

@ankion
Created December 16, 2014 01:53
Show Gist options
  • Save ankion/423cb7f9c4461d0a58ed to your computer and use it in GitHub Desktop.
Save ankion/423cb7f9c4461d0a58ed to your computer and use it in GitHub Desktop.
Auto Paste Mode
if &term =~ "xterm.*"
let &t_ti = &t_ti . "\e[?2004h"
let &t_te = "\e[?2004l" . &t_te
function XTermPasteBegin(ret)
set pastetoggle=<Esc>[201~
set paste
return a:ret
endfunction
map <expr> <Esc>[200~ XTermPasteBegin("i")
imap <expr> <Esc>[200~ XTermPasteBegin("")
cmap <Esc>[200~ <nop>
cmap <Esc>[201~ <nop>
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment