Sublime Forum

Disabling Autocomplete box native to sublime

#1

How do I make this not happen:

0 Likes

#2

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

#3

I don’t want to disable autocomplete as a whole, just the one sublime uses.

0 Likes

#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