Elec
Elec

Reputation: 61

vim 8.2 problems with unicode

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

Answers (1)

S0AndS0
S0AndS0

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

TLDR

~/.vimrc (snip)

set t_TI=
set t_TE=

Vim Documentation

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

Related Questions