To turn off Sublime Text’s auto-completion feature, you can do the following: Cancel the current suggestion directly: Press the Ctrl Space key. To permanently turn off: Set the "auto_complete" value to false in the Preferences.sublime-settings file. Close based on a specific scope: Set the "auto_complete" value to false for a specific scope.
How to turn off the automatic completion function of Sublime Text
Turn it off directly:
Permanently turn off:
To permanently turn off Sublime Text’s auto-completion feature, follow these steps:
.sublime-settings
in Windows, Preferences.sublime-settings
in macOS and Linux). <code>"auto_complete": true</code>
true
to false
: <code>"auto_complete": false</code>
Turn off based on a specific range:
You can disable autocomplete for a specific range only by setting the autocomplete value for that range:
<code>.my-custom-scope</code>
<code>"auto_complete": { ".my-custom-scope": false }</code>
Autocompletion will now be disabled as long as the cursor is within <code>.my-custom-scope</code>.
The above is the detailed content of How to turn off sublime auto-completion. For more information, please follow other related articles on the PHP Chinese website!