vim 相关

阅读更多
1、中文显示乱码
在~/.vimrc 文件中,加入以下内容:
引用
set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936
   set termencoding=utf-8
   set encoding=utf-8

参考自: http://www.cnblogs.com/joeyupdo/archive/2013/03/03/2941737.html


2、保存readonly的文件
:w !sudo tee %

https://stackoverflow.com/questions/28635647/how-can-i-save-a-file-i-opened-in-vim-as-the-wrong-user

你可能感兴趣的:(vim)