Skip to content

Commit 224828d

Browse files
committed
updates
1 parent 3526374 commit 224828d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ If you are using Bootstrap CDN:
9595

9696
## Commands
9797

98-
### Validate selectors
98+
### Validate class selectors
9999

100100
Validates all `class` selectors in the active editor.
101101

102-
### Clear style cache
102+
### Clear style sheets cache
103103

104-
Clears style cache.
104+
Clears style sheets cache.
105105

106106
## Sponsor
107107

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@
7878
"commands": [
7979
{
8080
"command": "vscode-html-css.validate",
81-
"title": "CSS: Validate selectors"
81+
"title": "CSS: Validate class selectors"
8282
},
8383
{
8484
"command": "vscode-html-css.clear",
85-
"title": "CSS: Clear style cache"
85+
"title": "CSS: Clear style sheets cache"
8686
}
8787
]
8888
},

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export function activate(context: ExtensionContext) {
6767
commands.registerCommand("vscode-html-css.clear", () => clear())
6868
);
6969

70-
return commands.executeCommand(
70+
return commands.executeCommand<void>(
7171
"vscode-html-css.validate",
7272
AutoValidation.ALWAYS
7373
);

src/provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ export class Provider implements CompletionItemProvider, DefinitionProvider {
238238
}
239239

240240
export function clear() {
241-
window.showInformationMessage(`CSS: Style cache (${cache.size}) cleared.`);
241+
window.showInformationMessage(`Style sheets cache cleared: ${cache.size}`);
242242
cache.clear();
243243
}
244244

0 commit comments

Comments
 (0)