Home > Article > Development Tools > How to set up sublime in English
To set English in Sublime Text, please perform the following steps: Open "Preferences" → "Settings"; modify the syntax in the "Preferences" file to: "Packages/English/English.tmLanguage" ;Save changes;Restart Sublime Text.
How to set English in Sublime
Sublime Text is a popular text editor that offers a variety of features and customization options. One of the features is to set a preferred language to optimize code highlighting and auto-completion.
Step 1: Open Settings
Step 2: Edit the "Preferences" file
<code>"syntax": "Packages/Python/Python.tmLanguage"</code>
Step 3: Modify the syntax settings
<code>"syntax": "Packages/English/English.tmLanguage"</code>
Step 4: Save changes
Step 5: Restart Sublime
Now, Sublime Text will be optimized for English. Code highlighting and autocomplete will be adjusted based on English grammar and keywords.
The above is the detailed content of How to set up sublime in English. For more information, please follow other related articles on the PHP Chinese website!