Posted on 2019-09-06 09:40
宋鹏 阅读(656)
评论(0) 编辑 收藏 引用 所属分类:
Linux
If you don't already have a .vimrc
file in your home directory, create one using this:
vim ~/.vimrc
Add this line to the top of the file:
set nocompatible
Save the file and this should fix the problem for you. :)
解释 何为兼容模式:
初装linux,vi 启动的时候,会运行在兼容模式,此兼容模式是兼容old vi,所以会有这种情况。
此模式下,所有vi后来的改进都是关闭的。