Confusion about vim folding - how to disable?

后端 未结 9 1327
暗喜
暗喜 2020-12-22 20:20
  1. When I open the file it looks like this: \"enter or even this
9条回答
  •  粉色の甜心
    2020-12-22 21:14

    Vim makes it amazingly hard to disable folding, especially when using vimdiff.
    None of the above posted solutions worked for me, but this did (add to ~/.vimrc):

    au WinEnter * set nofen
    au WinLeave * set nofen
    

提交回复
热议问题