I am using sublime text 3 in Windows 10.
![](https://www.manongdao.com/static/images/pcload.jpg)
![](https://www.manongdao.com/static/images/pcload.jpg)
As you can see it from the above captures, Korean/Chinese/Japanese characters are broken in 'Go to Anything' text input, sidebar, and tab title.
Does anyone know how to solve this problem? I think that similar languages like Japanese, Chinese characters have the same problem.
Font setting in Preferences - Settings - Users does not solve this problem.
ps. This is not a problem of encoding of the text 'file'. It may come from the unappropriate Windows font that the Sublime text.exe
is using. But I cannot find a way to change this. Changing Windows default font does not solve this problem. (I can definitely see Korean in Windows file explorer.)
Editted : See also kipid's blog - Introducing Sublime Text editor - #Sidebar, Go to Anything, Tab label 에서의 한글깨짐 (Package - PackageResourceViewer) for the solution.
I had the same problem: The ST3 installed in my Windows 7 machine could not display file names with Chinese characters correctly in the side bar and in the tab. I found this solution in the Chinese website Zhihu: Simply add "dpi_scale": 1.0
in the user preference file and restart ST3. It works for me!
- in Sublime Text, press "Ctrl + `" to open Console, then type below code to install package control.
import urllib.request,os; pf = 'Package Control.sublime-package'; ipp
= sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) );
open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen(
'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())
restart Sublime Text
in Sublime Text, press "Ctrl + Shift + P" to open command mode, keyin "Install Package", select "Package Control: Install Package" from the drop down options
Now, key in "ConvertToUTF8" or "GBK Encoding Support".
done