Use <f29> consistently

This commit is contained in:
Conrad Irwin 2014-04-26 14:08:24 -05:00
parent d7e6f2302f
commit 7b88e4565e

View File

@ -3,6 +3,7 @@
" then https://coderwall.com/p/if9mda " then https://coderwall.com/p/if9mda
" and then https://github.com/aaronjensen/vimfiles/blob/59a7019b1f2d08c70c28a41ef4e2612470ea0549/plugin/terminaltweaks.vim " and then https://github.com/aaronjensen/vimfiles/blob/59a7019b1f2d08c70c28a41ef4e2612470ea0549/plugin/terminaltweaks.vim
" to fix the escape time problem with insert mode. " to fix the escape time problem with insert mode.
"
" Docs on bracketed paste mode: " Docs on bracketed paste mode:
" http://www.xfree86.org/current/ctlseqs.html " http://www.xfree86.org/current/ctlseqs.html
" Docs on mapping fast escape codes in vim " Docs on mapping fast escape codes in vim
@ -23,7 +24,7 @@ if &term =~ "xterm.*" || &term =~ "screen*"
let &t_EI .= WrapForTmux("\<Esc>[?2004l") let &t_EI .= WrapForTmux("\<Esc>[?2004l")
function! XTermPasteBegin(ret) function! XTermPasteBegin(ret)
set pastetoggle=<Esc>[201~ set pastetoggle=<f29>
set paste set paste
return a:ret return a:ret
endfunction endfunction