Skip to content

Instantly share code, notes, and snippets.

@taichunmin
Created September 5, 2014 00:16
Show Gist options
  • Save taichunmin/47132a4c927e4acc366d to your computer and use it in GitHub Desktop.
Save taichunmin/47132a4c927e4acc366d to your computer and use it in GitHub Desktop.
ConvertToUTF8.sublime-settings
{
// supported encoding list, name & code in pair
"encoding_list" : [
// ["Chinese Simplified (GBK)", "GBK"],
// ["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"]
],
// Maximum size for encoding cache, 0 means no cache
"max_cache_size" : 100,
// Maximum lines to detect, 0 means unlimited
"max_detect_lines" : 600,
// Action when previewing file: no_action or convert_and_open
"preview_action" : "convert_and_open",
// Encoding for new file, empty means using sublime text's "default_encoding" setting
"default_encoding_on_create" : "UTF-8",
// Set this option to true will cause Sublime Text reload the saved file when losing focus
"lazy_reload": false,
// Convert encoding options when loading/saving: always, never
"convert_on_load" : "always",
"convert_on_save" : "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment