onecentlin / laravel5-snippets-vscode

Laravel snippets for Visual Studio Code (Support Laravel 5 and above)
MIT License
36 stars 19 forks source link

Incompatible with emmet - visual studio code #6

Closed ssheduardo closed 7 years ago

ssheduardo commented 7 years ago

When install your plugin, the autocomplete of emmet is disabled. If write html:5 or h2 and press TAB no autocomplete

Where are the error?

onecentlin commented 7 years ago

With Visual Studio Code v1.15+

Please update your User Profile:

    "emmet.includeLanguages": {
        "blade": "html"
    },
    "emmet.triggerExpansionOnTab": true,

Notice that emmet.syntaxProfiles is replaced with new property emmet.includeLanguages

ssheduardo commented 7 years ago

Thanks you, now is fine.