Sublime Forum

AutoComplete seems out of control

#1

I’m not sure if something changed recently or I just am in a new use case scenario here, but the tab auto complete in Sublime 3 seems REALLY aggressive now… in the example video, I’m just trying to insert tabs to line up the ‘=’ signs… and you can see, without even popping the autocomplete selector panel it just auto fills in what it thinks is best. How can I disable this?

Here’s what I have set currently… which results in the behavior seen in the clip attached.

"auto_close_tags": true,
	"auto_complete": true,
	"auto_complete_commit_on_tab": false,
	"auto_complete_cycle": false,
	"auto_complete_delay": 50,
	"auto_complete_selector": "meta.tag - punctuation.definition.tag.begin, source - comment - string.quoted.double.block - string.quoted.single.block - string.unquoted.heredoc",
	"auto_complete_size_limit": 4194304,
	"auto_complete_triggers":
	[
		{
			"characters": "<",
			"selector": "text.html"
		}
	],
	"auto_complete_commit_trigger_characters":
	[
		".",
		"Enter"
	],
	"auto_complete_with_fields": false,
0 Likes