Sublime Forum

Autocomplete not working Sublime Text 3

#1

Windows 8 64 bit.
When creating a new document, autocomplete does not work.
Using default preferences.
If I import an HTML doc created earlier, the autocomplete works.

Posting Sublime and Emmet preferences files.
This is the Sublime preferences file
// 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, meta.tag - punctuation.definition.tag.begin",

// 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,

// Controls what happens when pressing the up key while the first item in
// the auto complete window is selected: if false, the window is hidden,
// otherwise the last item in the window is selected. Likewise for the
// down key when the last item is selected.
"auto_complete_cycle": false,

// Automatically close HTML and XML tags when </ is entered.
"auto_close_tags": true,

This is the **Emmet **preferences files

// Disable completions of HTML attributes
// with this option disabled, you can get attribute list completions
// inside opening HTML tags.
// WARNING: with this option disabled, Tab key expander will not
// work inside opening HTML attributes
"disable_completions": false,

// With this option enabled, all Emmet's CSS snippets
// will be available in standard auto-complete popup
"show_css_completions": true,

// List of scopes where Emmet CSS completions should be available
"css_completions_scope": "source.css - meta.selector.css - meta.property-value.css, source.scss - meta.selector.scss - meta.property-value.scss, source.less - meta.selector.css - meta.property-value.css",

// Remove default HTML tag completions on plugin start
// You should restart editor after changing this option
"remove_html_completions": false,
0 Likes

#2

Same for me. I guess the Emmet plugin is causing my css auto completion to break…

0 Likes