Sublime text 4的设置

  • 让状态栏显示文档编码: show_encoding设置为true;
  • 在状态栏中显示行结尾形式:"show_line_endings": true;
  • 在检测不到文档编码时默认以什么编码打开:"fallback_encoding": "Chinese (GB18030)";
  • 在查找后不要关闭查找工具条:"close_find_after_find_all": false;
  • 在替换所有后不要关闭查找工具条:"close_find_after_replace_all": false;
1
2
3
4
5
6
7
8
9
10
11
12
{
"ignored_packages":
[
"Vintage",
],
"show_encoding": true,
"show_line_endings": true,
"fallback_encoding": "Chinese (GB18030)",
"close_find_after_find_all": false,
"close_find_after_replace_all": false,
}