Reputation: 61
I am trying to disable or remove the
autocomplete
feature in Sublime Text 3.
I did try to disable it by:
"auto_complete": false
in settings but this didn't work.
Please Help.
Upvotes: 1
Views: 1334
Reputation: 117
Preferences ▶ Settings:
"auto_complete": false
How to disable Auto Complete in Sublime Text (2&3)
Upvotes: -1
Reputation: 1771
The list is comma separated. Make sure to put a comma after any preceding items.
{
"font_size":17,
"auto_complete": false
}
Make sure you restart the application afterwards.
Here is an unofficial doc which states the following:
Note that if you choose to add anything to your personal settings file, the following rules apply:
-The last preference must not have a comma after it
-All other preferences must have commas after them
Failure to adhere to these rules will result in your personal settings file not working!
Upvotes: 3