Skip to content

Commit 8b12b99

Browse files
committed
Update docs and bumps version
1 parent 67032a5 commit 8b12b99

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.3.0 (Jun 1, 2017)
2+
* Added support for Vue Single File Components. Thanks to github.com/bypatryk.
3+
14
### 1.2.1 (Mai 28, 2017)
25
* Rolling back a change that was causing node_modules to be ignored.
36

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ A Visual Studio Code extension that provides CSS class name completion for the H
77
## Features
88
* Provides class name completion from class definitions found on your current workspace
99
* Command to manually re-cache the class definitions used on the auto completion
10-
* Supports React's `className` attribute
10+
11+
## Supported Language Modes
12+
* HTML
13+
* JavaScript
14+
* JavaScript React (.jsx)
15+
* TypeScript React (.tsx)
16+
* Vue (.vue) [requires [vetur](https://marketplace.visualstudio.com/items?itemName=octref.vetur)]
1117

1218
## Features on the backlog
1319
* Cache class definitions from style tags
@@ -18,14 +24,13 @@ A Visual Studio Code extension that provides CSS class name completion for the H
1824
You can request new features on the [extension repository on GitHub](https://github.com/Zignd/HTML-CSS-Class-Completion/issues).
1925

2026
## What's new in version 1.2.x (Mai 28, 2017)
27+
### 1.3.0 (Jun 1, 2017)
28+
* Added support for Vue Single File Components. Thanks to github.com/bypatryk.
29+
2130
### 1.2.1 (Mai 28, 2017)
2231
* Rolling back a change that was causing node_modules to be ignored.
2332

24-
### 1.2.0 (Mai 9, 2017)
25-
* Now completion gets triggered when you open single quotes, double quotes or types a space character". Thanks to github.com/allevaton.
26-
* Internal refactors. Thanks to github.com/allevaton.
27-
28-
Check out the [change log](https://github.com/zignd/HTML-CSS-Class-Completion/blob/1.2.0/CHANGELOG.md) for all updates.
33+
Check out the [change log](https://github.com/zignd/HTML-CSS-Class-Completion/blob/1.3.0/CHANGELOG.md) for all updates.
2934

3035
## Usage
3136
If there are HTML files on your workspace the extension automatically starts and look for CSS class definitions. In case new CSS classes are definined or new CSS files are added to the workspace and you also want auto completion for them simply hit the lightning icon you will find on the status bar and execute the command pressing `Ctrl+Shift+P` and then typing "Cache CSS class definitions".

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "html-css-class-completion",
33
"displayName": "IntelliSense for CSS class names",
44
"description": "Provides CSS class name completion for the HTML class attribute based on the CSS files in your workspace. Also supports React's className attribute.",
5-
"version": "1.2.1",
5+
"version": "1.3.0",
66
"publisher": "Zignd",
77
"engines": {
88
"vscode": "^1.4.0"

0 commit comments

Comments
 (0)