Package Exports
- vscode-css-languageservice
- vscode-css-languageservice/lib/esm/cssLanguageService.js
- vscode-css-languageservice/lib/esm/data/webCustomData
- vscode-css-languageservice/lib/esm/data/webCustomData.js
- vscode-css-languageservice/lib/esm/languageFacts/dataProvider
- vscode-css-languageservice/lib/esm/languageFacts/dataProvider.js
- vscode-css-languageservice/lib/umd/cssLanguageService.js
- vscode-css-languageservice/lib/umd/data/webCustomData
- vscode-css-languageservice/lib/umd/data/webCustomData.js
- vscode-css-languageservice/lib/umd/languageFacts/dataProvider
- vscode-css-languageservice/lib/umd/languageFacts/dataProvider.js
- vscode-css-languageservice/lib/umd/parser/cssNodes
- vscode-css-languageservice/lib/umd/parser/cssNodes.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vscode-css-languageservice) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vscode-css-languageservice
Language services for CSS, LESS and SCSS
Why?
The vscode-css-languageservice contains the language smarts behind the CSS, LESS and SCSS editing experience of Visual Studio Code and the Monaco editor.
- doValidation analyses an input string and returns syntax and lint errors.
- doComplete provides completion proposals for a given location.
- doHover provides a hover text for a given location.
- findDefinition finds the definition of the symbol at the given location.
- findReferences finds all references to the symbol at the given location.
- findDocumentHighlights finds all symbols connected to the given location.
- findDocumentSymbols provides all symbols in the given document
- doCodeActions evaluates code actions for the given location, typically to fix a problem.
- findDocumentColors evaluates all color symbols in the given document
- doRename renames all symbols connected to the given location.
- prepareRename the range of the node that can be renamed
- getFoldingRanges returns folding ranges in the given document.
Installation
npm install --save vscode-css-languageservice
API
For the complete API see cssLanguageService.ts and cssLanguageTypes.ts
Development
- clone this repo, run `npm install``
npm test
to compile and run tests
How can I run and debug the service?
- open the folder in VSCode.
- set breakpoints, e.g. in
cssCompletion.ts
- run the Unit tests from the run viewlet and wait until a breakpoint is hit:
How can I run and debug the service inside an instance of VSCode?
- run VSCode out of sources setup as described here: https://github.com/Microsoft/vscode/wiki/How-to-Contribute
- run
npm link
in the folder ofvscode-css-languageservice
- use
npm link vscode-css-languageservice
invscode/extensions/css-language-features/server
to run VSCode with the latest changes fromvscode-css-languageservice
- run VSCode out of source (
vscode/scripts/code.sh|bat
) and open a.css
file - in VSCode window that is open on the
vscode-css-languageservice
sources, run commandDebug: Attach to Node process
and pick thecode-oss
process with thecss-language-features
path - set breakpoints, e.g. in
cssCompletion.ts
- in the instance run from sources, invoke code completion in the
.css
file
Note: All CSS entities (properties, at-rules, etc) are sourced from https://github.com/microsoft/vscode-custom-data/tree/master/web-data and transpiled here. For adding new property or fixing existing properties' completion/hover description, please open PR there).
License
(MIT License)
Copyright 2016, 20 Microsoft
With the exceptions of build/mdn-documentation.js
, which is built upon content from Mozilla Developer Network
and distributed under CC BY-SA 2.5.