##问题
ubuntu下中文显示成方块。
##解决方案
###说明
版本: 0.192.0 ~ 0.201.0
效果:编辑区域、树形资源管理器、toggles面板、git-plus等插件的中文正常显示。
不足:开发工具中的中文依然显示为方块。
###步骤
- 打开
style.less
文件 ( 唤出Command Palette
找到Open Your Stylesheet
)。 - 粘贴下面代码并保存。(其中
"ubuntu mono"
、"ubuntu"
替换为你希望的西文字体名)。
/* 等宽字体 */
@mono-font-family: "ubuntu mono", "Hiragino Sans GB", "Microsoft YaHei","WenQuanYi Micro Hei", sans-serif;
/* 非等宽字体 */
@font-family: "ubuntu", "Hiragino Sans GB", "Microsoft YaHei","WenQuanYi Micro Hei", sans-serif;
html,
body,
ol,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
span,
pre,
section,
input,
textarea,
.atom-panel,
.status-bar,
.tree-view,
.title,
.current-path,
.tooltip {
font-family: @font-family;
}
.autocomplete-plus span,
code,
.-tree-view-,
.symbols-view,
.editor {
font-family: @mono-font-family;
}
.editor {
font-size: 14px;
}