From 10063634bdaf4edc0c0c641fedb8797f2be69b0e Mon Sep 17 00:00:00 2001 From: Von Random Date: Tue, 7 Jul 2015 19:45:06 +0300 Subject: [PATCH] a small fix to vim config --- vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vimrc b/vimrc index 3677c03..0b9b5ca 100644 --- a/vimrc +++ b/vimrc @@ -30,8 +30,8 @@ if $TERM =~ '^[xterm|rxvt-unicode|screen]' let &t_SI = "\Ptmux;\\e[6 q\\\" let &t_EI = "\Ptmux;\\e[4 q\\\" else - let &t_SI .= "\[6 q" - let &t_EI .= "\[4 q" + let &t_SI = "\[6 q" + let &t_EI = "\[4 q" endif endif if $LANG =~ '[UTF\-8|utf8]$'