The opening of the Chinese file name is garbled, but converttoutf8 is not a big problem.
Bytes --------------------------------------------------------------------------------------------------------
Answer:
This is the bug of sublime Text 3. This bug occurs when the size of custom text (DPI) in Windows personalized display is greater than 100% by default.
Solution:
In sublime Text 3, preference, settings-user, and the last line is added.
"Dpi_scaling": 1.0
Overwrite the DPI set by the operating system.
This is my settings-user
{
"Font_face": "consolas ",
"Font_size": 15,
"Ignored_packages ":
[
"Vintage"
],
"Line_padding_bottom": 1,
"Line_padding_top": 1,
"Tab_size": 4,
"Translate_tabs_to_spaces": True,
"Word_wrap": "true ",
"Dpi_scaling": 1.0
}
(Xee:) My sublime text comes from: streaming cleaning; dpi_scale must be set to: 1. 0. The font size of the content must be set to a large value, and "font_size": 13, |
<Excerpt:Http://www.zhihu.com/question/24029280/answer/30256243>
Sublime Text 3: How does one solve the box that displays the Chinese file name?