- Settings to allow users to specify which language modes will have autocompletion;
- Fix interpretation of classes defined inside media queries.
- Fix Emmet completion which was not enabled at startup when the configuration was set.
- Added support for Django template (django-html).
- Added support for "class" in TypeScript React, JavaScript and JavaScript React language modes. Previously only "className" was supported;
- Added support for Emmet.
- Workaround for a bug in the VS Code API.
- Fix mistake in production build.
- Automatic re-caching when the extension's User Settings change.
- Added User Settings to consider or exclude folders and files from the caching process.
- Added support for Tailwind CSS's @apply function in CSS, SASS and SCSS.
- Added support for Laravel (Blade).
- Added the "multi-root ready" keyword, it was a request from the VS Code team.
- Fix error that occurs when you try to get completion and the extension is loading;
- Add limitations to the concurrency in resource-intensive operations;
- Add progress indicator, useful for large projects;
- The
node_modules
will not be ignored. With those changes, it seems that there's no need to ignore it.
- Temporary fix to prevent high CPU usage. The
node_modules
will be ignored in the search for CSS class definitions. Link to the issue containing detailed information.; - Fix possibility to run the caching process multiple times simultaneously.
- Temporary fix to prevent high CPU usage. The
node_modules
will be ignored in the search for CSS class definitions. Link to the issue containing detailed information.
- Added support for EJS.
- Added support for Handlebars.
- Small parsing related fix.
- Added support for Embedded Ruby (.html.erb).
- Added support for Markdown.
- Added support for Twig.
- Added support for external stylesheets referecend through
link
elements in HTML files.
- Added support for Razor and PHP.
- Added support for Vue Single File Components. Thanks to github.com/bypatryk.
- Rolling back a change that was causing node_modules to be ignored.
- Now completion gets triggered when you open single quotes, double quotes or types a space character". Thanks to github.com/allevaton;
- Internal refactors. Thanks to github.com/allevaton.
- Added support for React's
className
attribute in JavaScript, JavaScript React (.jsx) and TypeScript React files (.tsx). Thanks to github.com/JanneHarju.
- Fixed error showing up whenever there were no workspace opened.
- Refactored to add proper asynchronous parallel parsing of the documents.