Sublime text 如何显示文件的编码
Sublime text默认不显示文件编码的,如图

显示编码的方式:
Preferences–>Settings->User
在用户设置那边的大括号里面添加如下代码
// Display file encoding in the status bar
"show_encoding": true,
// Display system code in the status bar
"show_line_endings": true,
之后记得保存(ctrl+s)
无需重启即可在状态栏看到编码
