Toolbar font settings in Sublime Text are located in the preference file. The specific steps are as follows: Open the preference file. Find the font settings: "font_face" and "font_size". Modify font and size. save Changes. Restart Sublime Text to apply the changes.
Toolbar font settings in Sublime Text
Problem: Toolbar in Sublime Text Where are the font settings?
Answer: The settings for toolbar fonts in Sublime Text are located in the preference file.
Detailed steps:
Open the preference file:
Ctrl
Shift
P
key, enter Preferences: Open Settings - User
and press Enter. Cmd
,
keys to go to Preferences
> Settings - User
. Find the font settings:
Find the following section in the preferences file:
<code class="json">"font_face": "", "font_size": 10.0,</code>
Modify font and size:
Example:
To set the toolbar font to "Courier New" and the size to 12 pixels, modify the settings in the preference file to :
<code class="json">"font_face": "Courier New", "font_size": 12.0,</code>
After that, the font in the toolbar will change to "Courier New" with a size of 12 pixels.
The above is the detailed content of Where is the sublime toolbar font setting?. For more information, please follow other related articles on the PHP Chinese website!