1

How to fix E575: viminfo: Illegal starting char in line

I'm getting the error while accessing vim editor on Linux as given below, How to fix this issue?

E575: viminfo: Illegal starting char in line: 0\r<a7>^[m<fb><fc>^E
E575: viminfo: Illegal starting char in line: http://192.155.206.84/<93><eb>9<a6>k<eb>.
E575: viminfo: Illegal starting char in line: ^Da^E
E575: viminfo: Illegal starting char in line: ^D<a1>^F
E575: viminfo: Illegal starting char in line: x^Q
E575: viminfo: Illegal starting char in line: ^K<^OD^K^X^U@^I<bb>^A^D<80>^B^I4^D<90>^R^L<b4>^P^MX^K,^Q<bc>^A^Q<98>^K^U<f8>^E^I<a4>^A^K^L^M^X^YT^QS^S<88>^I^K^L^M^X^Y<84>^A^Q<83>^A^W<af>^^^D<9c>'^O,^H,^I(^D<b8>^E^M<b0>^D^G<af>^D^D<cc>^D^K,!
E575: viminfo: Illegal starting char in line: ^]^I^T^H^Ls^E<98>^R^S^H^N<9a>^M^S^H^N&<f9>(<f9>^I^P^]^L^Z^Lp<99>^N^[^M&<f9>^R
E575: viminfo: Illegal starting char in line: ^[^D&<f9>(<f9>^M^V^]^F<81>^N^C^B^]^G<81>^O^D^B&<fb>}^P^X^H&<f9>^S^D^Y&<f8>(<f8>^Q^[/<f9>^Q^]<81>^R^E^B/<f9>^S^_<81>^T^F^B/<f9>^U!%<fb>/<f9>^V#^S^W%&<f7>(<f7>^X'&<f7>(<f7>^Y)&<f8>}^Z+)&<f6><81>^[^G^B/<f6>^\,Y<f8><f7><f6>./<f9>^]0^S^W%&<f7>(<f7>^X'&<f7>(<f7>^Y2&<f8>}^^4)&<f6><81>^_^H^B/<f6> 5Y<f8><f7><f6>7/<f9>!9%<f9>^]^E^S^C
E575: viminfo: Illegal starting char in line: <81>$^I^B&<f9>\<f9>>^]^O^S^D^Y&<f8>(<f8>%@&<f9>^R^U&<f7><81>&
E575: viminfo: Illegal starting char in line: ^B&<f6>Z<f9><f8><f7><f6>B^S^D^Y&<f8>(<f8>%@&<f9>^R'&<f7><81>(^K^B&<f6>Z<f9><f8><f7><f6>D^M<a9>
E136: viminfo: Too many errors, skipping rest of file
vim Add a comment
caden
asked Jul 09 2019
edited Jul 09 2019

Answer

1

Root cause

The root cause of this issue as the user's viminfo file gets corrupted somehow and certain characters are not interpreted so every time you try to open the original file, it throws out "Illegal starting char in line"

Solution

You can delete the user's viminfo file from the user's home directory which exists in current login user

.viminfo file is hidden file as started with .(dot)

Which file contains information about the history of all the vim editor records such as files edited and the arguments you used inside the editor etc.,

There is no interruption will happen to affect any of your existing work due to removing the file as .viminfo. Its also the better way to erase your cache history but it does not affect any of your work done.

Add a comment
linuxhelp
asked Jul 09 2019
Post your Answer