This article mainly introduces some basic settings of Sublime Text.
You can download the required version through the following link.
SublimeText3 Chinese version: //m.sbmmt.com/xiazai/gongju/93
//m.sbmmt.com/xiazai/gongju/500
//m.sbmmt.com/xiazai/gongju/1471
//m.sbmmt.com/xiazai/gongju/1473
font size, line number display or color scheme of the editor. All basic settings are configured in
JSON format. To see a list of settings, go to the Preferences -> Settings menu.
Default includes all default configurations, user-defined basic settings and custom settings.
For the scenario mentioned above, the custom settings are as follows
"font_size": 15, "ignored_packages": [ "Vintage" ]
Setting categoriesThe settings for various categories in Sublime Text are as follows
:
Editor settingsThis includes basic settings for editing code base files. Examples include font_face, font_size and tab_size. These settings are present in the default configuration.
User Interface Settings These include general settings focused specifically on backgrounds, themes, and various color combinations. These settings are appended to the second part of the default configuration.
App BehaviorThese settings focus on the behavior of applications contained within the Sublime Text editor in open windows. These settings are included in the third section of the default configuration settings.
Syntax - Specific Settings These settings are used to design the syntax of the Sublime Text editor. To get a list of syntax-specific settings, the user needs to use the option Preferences - Syntax-Specific.
The above is the detailed content of What are the basic settings of Sublime Text?. For more information, please follow other related articles on the PHP Chinese website!