Reputation: 111
I had recently updated some of the plugins in vim.After that a "$" sign is appearing in all the line ends of the file. I understand this is a line break issue . I added the following lines in vimrc
set wrap
set linebreak
set nolist
But still the $ sign is there.
The funny part is ,if I use set nolist in any of the file it removes the $ sign. But it is not picking from vimrc. any solution for this?
Upvotes: 0
Views: 126
Reputation: 881633
The scriptnames
command in vim
is particularly useful for this. It shows the scripts that loaded successfully.
To show the ones that don't load for some reason, you can start vim
with the -V
option.
That should hopefully be enough for you to identify either:
set list
.Upvotes: 2