2013-09-28 67 views
8

崇高文本中的正常字體總是粗體。更改崇高文本2字體重量

enter image description here

現在是真的瘦了,我不能與工作。我可以將它改回原來的狀態嗎?

enter image description here

我並沒有改變任何東西,它只是改變後,我重新啓動我的MacBook。

感謝, Mottenmann

+0

它是一般的崇高或整個OSX?可能是OSX系統範圍的抗鋸齒設置。如果事情弄糟了,你可以從命令行調整它。 –

+0

沒錯,這看起來像反鋸齒問題。我的ST3爲 – EffectiX

回答

17

同樣的事情發生在我身上。 Sublime Text 2突然改變爲在我的Mac上使用超薄字體。

添加

的Mac:

"font_options":["no_round"], 

PC:

"font_options":["bold"], 

enter image description here

enter image description here

+2

,解決方案是從'font_options'中刪除''gray_antialias''。 – tam5

1

當您的問題似乎是專門抗鋸齒在你的Mac,你可以修改你的主題,使特定的文本顯示不同fontStyle

例如,採取Monokai主題。使用Preferences > Browse Packages菜單快捷方式,並在Color Schemes文件夾中看到您將擁有Monokai.tmTheme文件。打開並編輯這個文件,使一些文本看起來像斜體。

例如,對於註釋文本...查找(約48行):

<dict> 
    <key>name</key> 
    <string>Comment</string> 
    <key>scope</key> 
    <string>comment</string> 
    <key>settings</key> 
    <dict> 
     <key>foreground</key> 
     <string>#75715E</string> 
    </dict> 
</dict> 

要更改字體樣式有它以斜體顯示,添加行標有星號:

<dict> 
    <key>name</key> 
    <string>Comment</string> 
    <key>scope</key> 
    <string>comment</string> 
    <key>settings</key> 
    <dict> 
     <key>foreground</key> 
     <string>#75715E</string> 
     *<key>fontStyle</key> 
     *<string>italic</string> 
    </dict> 
</dict> 

對於您想要的效果,您將選擇bold而不是italics作爲fontStyle字符串。

6

一個更簡單的方法是簡單地重命名添加到font_face(即中等使用「中等」,光用「光」等)

前:

{ 
    "font_face": "Source Code Pro", 
    "font_size": 16.0, 
} 

後:

{ 
    "font_face": "Source Code Pro Light", 
    "font_size": 16.0, 
} 

字體 「源代碼」 成爲ExtraLight,川芎嗪ht,Medium,Regular等等。如果你想使用Light版本,將字體重量和font_face一起使用也是可行的。

p.s.嘗試使用源代碼Pro或Inconsolata。它們是迄今爲止最好的編碼字體。

-2

我注意到在這個崇高的變化,當我重新啓動我的電腦(MacBook Air上,OSX 10.7),而被連接到外部顯示器。 要修復它,我做了以下事情:拔掉外接顯示器,重新啓動Sublime,再次插上顯示器。