Skip to content

Commit 5704162

Browse files
authored
update readme (#461)
1 parent 9523764 commit 5704162

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

README.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,21 @@ and the Monaco editor.
1616
- *findDefinition* finds the definition of the symbol at the given location.
1717
- *findReferences* finds all references to the symbol at the given location.
1818
- *findDocumentHighlights* finds all symbols connected to the given location.
19-
- *findDocumentSymbols* provides all symbols in the given document
19+
- *findDocumentLinks* provides all symbols in the given document
20+
- *findDocumentSymbols* provides all links for references in the given document
2021
- *doCodeActions* evaluates code actions for the given location, typically to fix a problem.
2122
- *findDocumentColors* evaluates all color symbols in the given document
23+
- *getColorPresentations* lists valid CSS color presentations
2224
- *doRename* renames all symbols connected to the given location.
2325
- *prepareRename* the range of the node that can be renamed
2426
- *getFoldingRanges* returns folding ranges in the given document.
27+
- *getSelectionRanges* returns selection ranges in the given document.
28+
29+
30+
The _vscode-css-languageservice_ does not cover syntax highlighting. VS Code uses TextMate grammars for that, with a grammar that is maintained in https://github.com/microsoft/vscode-css.
31+
32+
33+
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.
2534

2635
Installation
2736
------------
@@ -38,7 +47,6 @@ For the complete API see [cssLanguageService.ts](./src/cssLanguageService.ts) an
3847
Development
3948
-----------
4049

41-
4250
- clone this repo, run `npm install`
4351
- `npm test` to compile and run tests
4452

@@ -61,17 +69,12 @@ How can I run and debug the service inside an instance of VSCode?
6169
- set breakpoints, e.g. in `cssCompletion.ts`
6270
- in the instance run from sources, invoke code completion in the `.css` file
6371

64-
65-
66-
**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).**
67-
68-
6972
License
7073
-------
7174

7275
(MIT License)
7376

74-
Copyright 2016, 20 Microsoft
77+
Copyright 2016, 25 Microsoft
7578

7679
With the exceptions of `build/mdn-documentation.js`, which is built upon content from [Mozilla Developer Network](https://developer.mozilla.org/docs/Web)
7780
and distributed under CC BY-SA 2.5.

0 commit comments

Comments
 (0)