Home >Development Tools >sublime >How to set sublime to automatically pop up the beginning
To set the automatic pop-up beginning in Sublime Text, you can follow the following steps:
1. Open User Settings
2. Add code in the settings file
<code>"auto_complete": { "enabled": true, "activate_on_any_completion": true, "completions": [ "<div>", "<span>", "<p>", "<a>", "<ul>", "<li>", "<h1>" ] }</code>
3. Save settings
Save settings file .
Once set up, when you type in Sublime Text the beginning of any opening tag that automatically pops up (for example, "
The above is the detailed content of How to set sublime to automatically pop up the beginning. For more information, please follow other related articles on the PHP Chinese website!