vscode-html-languageservice
Advanced tools
Comparing version 3.0.0-next.6 to 3.0.0-next.7
@@ -48,3 +48,3 @@ # Custom Data for HTML Language Service | ||
- Completion on tag, attirbute and attribute value | ||
- Completion on tag, attribute and attribute value | ||
- Hover on tag (here's the [issue](https://github.com/Microsoft/vscode-html-languageservice/issues/47) for hover on attribute / attribute-name) | ||
@@ -96,2 +96,2 @@ | ||
- Completion on `<foo xattr=>` will provide all values in valueSet `x`, which is `xval` | ||
- Hover on `foo` will show `The foo element` | ||
- Hover on `foo` will show `The foo element` |
@@ -161,3 +161,3 @@ /*--------------------------------------------------------------------------------------------- | ||
codeSnippet = codeSnippet + value; | ||
if (attr.valueSet) { | ||
if (attr.valueSet || attr.name === 'style') { | ||
command = { | ||
@@ -164,0 +164,0 @@ title: 'Suggest', |
@@ -172,3 +172,3 @@ /*--------------------------------------------------------------------------------------------- | ||
codeSnippet = codeSnippet + value; | ||
if (attr.valueSet) { | ||
if (attr.valueSet || attr.name === 'style') { | ||
command = { | ||
@@ -175,0 +175,0 @@ title: 'Suggest', |
{ | ||
"name": "vscode-html-languageservice", | ||
"version": "3.0.0-next.6", | ||
"version": "3.0.0-next.7", | ||
"description": "Language service for HTML", | ||
@@ -5,0 +5,0 @@ "main": "./lib/umd/htmlLanguageService.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1437465