Sublime Forum

Disable Tab Autocomplete Not Working

#1

15 second video showing the issue:

https://streamable.com/o5yfd

Thanks

1 Like

#2

The auto_complete setting determines whether or not you get a completion popup showing you available choices for completion automatically or not; setting it to false stops the popup from appearing but doesn’t block the ability of the Tab key to expand completions.

To disable that, modifying the value of the tab_completion setting may help:

    // When enabled, pressing tab will insert the best matching completion.
    // When disabled, tab will only trigger snippets or insert a tab.
    // Shift+tab can be used to insert an explicit tab when tab_completion is
    // enabled.
    "tab_completion": true,
0 Likes

#3

OK got it!

Thanks bro

0 Likes