Hi, am new to this software. am trying to disable ‘auto complete’ . when i enter command: “auto_complete”: false am getting following message: "error trying to parse settings: unexpected trailing characters in Packages\ user\ preferences.sublime-settings: 1:17 cannot figure out how to resolve this. i want to control what i type in and don’t want this software to put in things automatically. any help please?
Need to disable auto complete, auto insert, etc
addons_zz
#2
It is:
"auto_complete": false,
As in:
{
// Enable auto complete to be triggered automatically when typing.
"auto_complete": true,
}
Are you missing the comma?
try also “auto_complete_delay”: 500000,
0 Likes
Exijeune7
#4
tried with comma, same result. but doesn’t unexpected trailing characters mean something that needs to be omitted?
0 Likes
addons_zz
#9
Remove everything on your preferences file and put only this:
{
// Enable auto complete to be triggered automatically when typing.
"auto_complete": true,
}
0 Likes
Landis
#13
i played and played with this because it sucked in documents with lots of number sets or tab was not being inserted…
this worked for me:
{ “keys”: [“tab”], “command”: “insert”, “args”: {“characters”: “\t”}, “auto_complete”: false },
only took an hour of trial and error.
Landis
0 Likes