Sublime Forum

Auto_complete is ST4 stopped functioning properly?

#1

I am using ST4 4102 and auto-complete seems to have taken an hit on python. Snippets still work properly, but auto_complete for words/text/variables does not. There is no pop-up showing for the available words. For example, say I have two variables named “abc123” and “abc12345”. After typing “abc”, I should be shown both the “abc123” and “abc12345”, but that is not happening…

What changed recently?

Here is what I have in my user-settings, pertaining to “auto_complete”:

{
	"auto_complete_selector": "meta.tag - punctuation.definition.tag.begin, source - comment - string.quoted.double.block - string.quoted.single.block - string.unquoted.heredoc, text.tex, text.html, - ",
	"auto_complete_triggers":
	[
		{
			"characters": ".",
			"selector": "source.python",
		}
	],

Anything wrong with that?

EDIT: Out of nowhere, it started working again… So weird, the only thing I changed was remove a “,” at the last line from the user-settings…

1 Like