mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 04:36:23 +00:00
CSS Language Features
This extension offers CSS/SCSS/Less support in VS Code.
Development
- Clone the
vscoderepository - Open the
extensions/css-language-features/directory in VS Code. - Run
yarnincss-language-features/. - Run
yarnincss-language-features/server/. - Run the
Launch Extensiondebug target in the Debug View. - Run
Reload Windowcommand in the launched instance to reload the extension.
Try vscode-css-languageservice
vscode-css-languageservice contains the language smarts for CSS/SCSS/Less. This extension only wraps the service into a Language Server for VS Code.
If you want to fix CSS/SCSS/Less issues or make improvements, you can:
- Clone
vscode-css-languageserviceand compile it withnpm compile. - Run
npm linkinvscode-css-languageservice. - In
css-language-features/server/, runnpm link vscode-css-languageservice. - Now when you run
Launch Extension, the launched instance will use your version ofvscode-css-languageservice.