vim 去掉自动注释和自动回车

经常 putty 到 服务器的 vim 粘贴一段小代码进去如 

Ruby代码  
  1. # aaa  
  2. # bb  
  3. class Book  
  4.   # zzz  
  5. end  



结果成了这样 

Ruby代码  
  1. # aaa  
  2. # # bb  
  3. # class Book  
  4. #   # zzz  
  5. #   end  
  6. #  
  7. #  


  
原因是开启了自动注释和自动缩进 

:set fo-=r 
:set noautoindent 

再 Shift + Insert 

正常了 

恢复 

:set fo=r 
:set autoindent

posted on 2012-03-31 18:15  Richard.FreeBSD  阅读(776)  评论(0编辑  收藏  举报

导航