-
Notifications
You must be signed in to change notification settings - Fork 178
/
Copy pathConvertToUTF8.sublime-settings
43 lines (33 loc) · 1.16 KB
/
ConvertToUTF8.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
// supported encoding list, name & code in pair
"encoding_list" : [
["Chinese Simplified (GBK)", "GBK"],
["Chinese Simplified (GB2312)", "GB2312"],
["Chinese Simplified (GB18030)", "GB18030"],
["Chinese Traditional (BIG5)", "BIG5"],
["Korean (EUC-KR)", "EUC-KR"],
["Japanese (CP932)", "CP932"],
["Japanese (Shift_JIS)", "Shift_JIS"],
["Japanese (EUC-JP)", "EUC-JP"],
["UTF-8", "UTF-8"]
],
// Reset diff markers after converting
"reset_diff_markers" : true,
// Maximum size for encoding cache, 0 means no cache
"max_cache_size" : 100,
// Maximum lines to detect, 0 means unlimited
"max_detect_lines" : 600,
// Convert when previewing file: true or false
"preview_action" : false,
// Encoding for new file, empty means using sublime text's "default_encoding" setting
"default_encoding_on_create" : "",
// Set this option to true will cause Sublime Text reload the saved file when losing focus
"lazy_reload": false,
// The minimum confidence rate between 0.0 and 1.0
"confidence": 0.95,
// Convert in Find Results view
"convert_on_find": false,
// Convert when loading/saving a file
"convert_on_load" : true,
"convert_on_save" : true
}