这在Sublime Text 2中是否可行?
由于默认首选项显示:
// The theme controls the look of Sublime Text's UI (buttons, tabs, scroll bars, etc)
"theme": "Default.sublime-theme",
我尝试修改该文件
(在/Data/Packages/Theme - Default/Default.sublime-theme
下)
添加以下行:
{
"class": "sidebar_label"
, "color": [0, 0, 0]
, "font.bold": false
, "shadow_color": [250, 250, 250], "shadow_offset": [0, 0]
, "font.face": "monospace" // ADDED THIS LINE ("monofur" is the monospace font I use in the editor window itself)
}
但这只会导致侧边栏中的所有文件和文件夹名称变为空白。
将另一行更改为"font.bold" = true
会导致所有名称变为粗体,因此...... ?????