Disabling Autocomplete box native to sublime
Go to command palette & search for Preferences: Settings and set auto_complete: false in the User file, save it to disable auto complete.
0 Likes
rwols
#4
Plugins that provide completions can disable ST completions. For example, in LSP there’s this setting:
// Disable Sublime Text's explicit and word completion.
"only_show_lsp_completions": false,
This basically enables the flags sublime.INHIBIT_WORD_COMPLETIONS and sublime.INHIBIT_EXPLICIT_COMPLETIONS when the setting is set to true.
If the plugin you’re using does not provide such a setting, you’ll have to request the maintainers of that plugin to write such functionality.
1 Like