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)."auto_complete": true
true
tofalse
:"auto_complete": false
Turn off based on a specific range:
You can disable autocomplete for a specific range only by setting the autocomplete value for that range:
.my-custom-scope
"auto_complete": { ".my-custom-scope": false }
Autocompletion will now be disabled as long as the cursor is within .my-custom-scope
.
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!