Editing xml files with long lines is really slow in vim. What can I do to fix this?

后端 未结 13 941
情书的邮戳
情书的邮戳 2021-01-31 02:24

I edit a lot of xml files with vim. The problem is that, because of the long lines, navigation/editing in vim is extremely slow. Is there something I can do (besides turning off

13条回答
  •  一向
    一向 (楼主)
    2021-01-31 02:26

    It's caused by long line parsing in vim. I finally found that if I remove following from my .vimrc, the problem solved:

    filetype indent plugin on
    

    Note that it doesn't work if you type in :filetype indent plugin off when editing a file with long line.

提交回复
热议问题