Merge pull request #12 from akkartik/master

drop check for terminals
This commit is contained in:
Conrad Irwin 2014-11-10 10:12:22 -08:00
commit 455989e5bb

View File

@ -8,7 +8,6 @@
" http://www.xfree86.org/current/ctlseqs.html
" Docs on mapping fast escape codes in vim
" http://vim.wikia.com/wiki/Mapping_fast_keycodes_in_terminal_Vim
if &term =~ "xterm.*" || &term =~ "screen*" || &term =~ "rxvt*"
function! WrapForTmux(s)
if !exists('$TMUX')
return a:s
@ -36,4 +35,3 @@ if &term =~ "xterm.*" || &term =~ "screen*" || &term =~ "rxvt*"
vmap <expr> <f28> XTermPasteBegin("c")
cmap <f28> <nop>
cmap <f29> <nop>
endif