Reputation: 61
Today I updated my vim to 8.2.1883 now I have some problems or let me say display problems. I'm using vim in the terminal. In case I will save a file I will get at the line where my cursor is something like this here [>4;m[>4;2m
Additional the line at the bottom so under my airline looks like this "my_c_file.c" 3104L, 133202B[>4;m[>4;2m
Does anybody know how I can fix this?
Upvotes: 4
Views: 485
Reputation: 920
Does anybody know how I can fix this?
The answer for StackExchange -- Vi -- What's t_TE and t_TI added by vim 8? resolved my issues of odd characters being injected after updating to Vim 8.2.2
~/.vimrc
(snip)
set t_TI=
set t_TE=
For more information use the following command to jump to Vim's documentation on the subject of what t_TI
and t_TE
options do...
vim -c ':help modifyOtherKeys'
Upvotes: 2