转载自:https://blog.csdn.net/commshare/article/details/6215088
在vim粘贴代码会出现缩进问题,原因在于vim在代码粘贴时会自动缩进
解决方法:
1. 先set paste,然后进入插入模式,粘贴代码。然后编辑代码需要自动缩进时,再设置set nopaste
2.
在.vimrc中加一句:
set pastetoggle=<F9>
以后在插入模式下,只要按F9键就可以切换自动缩进。
转载自:https://blog.csdn.net/commshare/article/details/6215088
在vim粘贴代码会出现缩进问题,原因在于vim在代码粘贴时会自动缩进
解决方法:
1. 先set paste,然后进入插入模式,粘贴代码。然后编辑代码需要自动缩进时,再设置set nopaste
2.
在.vimrc中加一句:
set pastetoggle=<F9>
以后在插入模式下,只要按F9键就可以切换自动缩进。
转载于:https://www.cnblogs.com/dj0325/p/9406207.html