Delete this left column in VIM

I was doing DIFF in VIM and after trying to change the color scheme I got this annoying column, it only appears in one file, no matter if I restart VIM, now I dont know how to get rid of it.

I think this has nothing to do with GitGutter, but now I'm not sure.

enter image description here

+3


source to share


1 answer


I think this is the column that displays indicators for open and closed folds. Its width is controlled by a local local option 'foldcolumn'

(see :h 'fdc

).

By default, its value is 0

(disabled). If it is present in one of your windows, some file must have changed its value. To see which one you can run:



:verbose setlocal foldcolumn

      

+4


source







All Articles