less than 1 minute read

VIM

Record vim tricks

change fileformat

  • encoding, 内部编码格式, 呈现的编码格式
  • fileencoding, 文件的编码格式, 会被 vim 转成内部编码格式
  • fileencodings, 逐一探测
set ff=unix
"set file save encoding
set fileencoding=cp936
"set file read encoding, edit file with cp936 fileencoding
e ++enc=cp936