]> git.phdru.name Git - dotfiles.git/commitdiff
.vimrc: automatically set paste mode when pasting in bracketed paste mode
authorOleg Broytman <phd@phdru.name>
Fri, 14 Apr 2017 07:05:55 +0000 (10:05 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 14 Apr 2017 07:05:55 +0000 (10:05 +0300)
.vimrc

diff --git a/.vimrc b/.vimrc
index e0b32985a97dc55725f81739576987702b045bec..4b7fdf81137662374cecbae71c9456d9deda1816 100644 (file)
--- a/.vimrc
+++ b/.vimrc
@@ -262,6 +262,30 @@ else
          let &t_fs = "\007"
       endif
    endif
+
+   " Automatically set paste mode in Vim when pasting in bracketed paste mode
+   " https://coderwall.com/p/if9mda/automatically-set-paste-mode-in-vim-when-pasting-in-insert-mode
+   function! WrapForTmux(s)
+     if !exists('$TMUX')
+       return a:s
+     endif
+
+     let tmux_start = "\<Esc>Ptmux;"
+     let tmux_end = "\<Esc>\\"
+
+     return tmux_start . substitute(a:s, "\<Esc>", "\<Esc>\<Esc>", 'g') . tmux_end
+   endfunction
+
+   let &t_SI .= WrapForTmux("\<Esc>[?2004h")
+   let &t_EI .= WrapForTmux("\<Esc>[?2004l")
+
+   function! XTermPasteBegin()
+     set pastetoggle=<Esc>[201~
+     set paste
+     return ""
+   endfunction
+
+   inoremap <special> <expr> <Esc>[200~ XTermPasteBegin()
 endif
 
 " Multiline comments often confuse vim syntax highlighting - these maps