Sublime Text 3 - 侧边栏字体更改

Sublime Text 3 - 侧边栏字体更改

是否可以在 Sublime Text 3 中更改 font_face 属性?我尝试在predawn.sublime-theme主题文件的部分中进行更改,但"class": sidebar_label没有成功。我知道这在版本 2 中有效,它是否以某种方式发生了变化?

答案1

您几乎明白了。只需"class": sidebar_label在最后一个条目后添加一个逗号,然后在下一行输入以下内容:

"font.face": "Comic Sans"

(或您想要的任何字体)。如果尺寸不对,只需添加逗号和另一行:

"font.size": 10

(或任何合适的尺寸)。

答案2

有几个"class": sidebar_label。首先,将 font.face 和 fon.size 一起设置,否则会崩溃!最好在第一个“class”中设置它:sidebar_label。示例:

      // Bullet Tree Indicator

{
  "class": "tree_row",
  "settings": ["material_theme_bullet_tree_indicator"],
  "attributes": ["selected"],
  "layer1.texture": "Material Theme/assets/commons/tree_highlight--bullet.png",
  "layer1.inner_margin": [22, 16, 0, 0]
},

{
  "class": "sidebar_label",
  "color": [96, 125, 139],
  "font.bold": false,
  "font.italic": false,
  "font.face": "Fira Code Retina",
  "font.size": 8,
  "shadow_color": [255, 255, 255, 0],
  "shadow_offset": [0, 0]
},
...

相关内容