Is there a way to change the font in the status bar Sublime Text 3?

时光总嘲笑我的痴心妄想 提交于 2019-12-03 14:33:14

It's only possible to do in the .sublime-theme file:

// Status bar label
{
    "class": "label_control",
    "parents": [{"class": "status_bar"}],
    "color": [140,140,140],
    "font.size": 11,
    "font.face": "Droid Sans Mono"
},

If you can't find any .sublime-theme, mentioned in accepted answer:

(To make it explicitly clear:)

  • Override any current theme by creating a Default.sublime-theme file under \Data\Packages\User\:

    [Sublime Text 3 Install dir] \Data\Packages\User\Default.sublime-theme
    
  • In that file, include something like the mentioned settings, but

    must surround with square brackets '[', ']':

  [
      // Status bar label
      {
          "class": "label_control",
          "parents": [{"class": "status_bar"}],
          "color": [130, 130, 130],
          "font.size" : 22
      }
  ]
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!