Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable tab completion when pressing tab in Sublime Text 3

Tags:

sublimetext3

How do I disable auto complete or tab completion in Sublime Text 3? I want pressing tab to always insert the tab character unless the auto-complete dropdown box is showing something else selected.

What is happening (Javascript file):

enter image description here

After pressing tab:

enter image description here

I tried adding this to the Preferences.sublime-settings file:

"tab_completion": false

However, the behavior did not change.

My preferences file looks like this:

{
    "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
    "font_size": 9,
    "ignored_packages":
    [
        "Vintage"
    ],
    "tab_completion": false
}

My Preferences > Settings - Syntax Specific file is empty:

// These settings override both User and Default settings for the JavaScript syntax
{

}
like image 523
jjz Avatar asked Oct 11 '18 18:10

jjz


People also ask

How do I enable autocomplete in Sublime Text 3?

By default, Sublime Text will automatically show the completions popup when a user is editing source code or markup, but not within prose in comments, strings or markups. Pressing the Esc key will hide the completions popup. To manually show the completions popup, press Ctrl+Space.

How do I add IntelliSense to Sublime Text?

Go to Preferences -> Settings - User and add the following (remove the last comma if it's the last entry in the array): "auto_complete": true, "auto_complete_commit_on_tab": true, "auto_complete_selector": "source, meta. tag", // you can make this "source - comment, meta.

How do I Unindent in Sublime Text?

You can use ctrl+ ] to indent a line (or highlighted block), and ctrl + [ to unindent.


Video Answer


1 Answers

You are correct, Preferences > Settings and set "tab_completion": false. You then have to close the sublime application though, which maybe was the missing step here.

like image 182
theZang Avatar answered Sep 19 '22 21:09

theZang