Sublime Forum

Auto complete fails to popup automatically

#1

Recently my ST starts to behaviour abnormally.
It used to automatically popup a list of words for auto complete but it doesn’t now. I have to trigger it manually with ctrl+space.
Any idea how I can bring it back?
(2.0.2 build 2221 OSX)

Snippet in Perferences.settings - Default

// When enabled, pressing tab will insert the best matching completion.
    // When disabled, tab will only trigger snippets or insert a tab.
    // Shift+tab can be used to insert an explicit tab when tab_completion is
    // enabled.
    "tab_completion": true,

    // Enable auto complete to be triggered automatically when typing.
    "auto_complete": true,

    // The maximum file size where auto complete will be automatically triggered.
    "auto_complete_size_limit": 4194304,

    // The delay, in ms, before the auto complete window is shown after typing
    "auto_complete_delay": 50,

    // Controls what scopes auto complete will be triggered in
    "auto_complete_selector": "source - comment",

    // Additional situations to trigger auto complete
    "auto_complete_triggers":  {"selector": "text.html", "characters": "<"} ],

    // By default, auto complete will commit the current completion on enter.
    // This setting can be used to make it complete on tab instead.
    // Completing on tab is generally a superior option, as it removes
    // ambiguity between committing the completion and inserting a newline.
    "auto_complete_commit_on_tab": false,

    // Controls if auto complete is shown when snippet fields are active.
    // Only relevant if auto_complete_commit_on_tab is true.
    "auto_complete_with_fields": false,

Snippet in Perferences.sublime - User

{
	"color_scheme": "Packages/Neon.tmTheme-master/Neon.tmTheme",
	"font_size": 10.0,
	"gutter": true,
	"ignored_packages":
	
		"SyncedSideBar"
	],
	"indent_guide_options":
	
		"draw_normal",
		"draw_active"
	],
	"line_numbers": true,
	"scroll_past_end": true,
	"word_wrap": true
}
0 Likes

#2

Hm…weird. It starts to popup again now. Maybe due to a restart, I’m not sure. But its working and I’m happy again :smiley:

0 Likes