Skip to content

Commit 4f2d70f

Browse files
committed
renamed configuration to html-css-class-completion like in pullrequest zignd#86
1 parent 08c303f commit 4f2d70f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232
{
3333
"title": "CSS Class Completion",
3434
"properties": {
35-
"css-class-completion.includeGlobPattern": {
35+
"html-css-class-completion.includeGlobPattern": {
3636
"type": "string",
3737
"default": "**/*",
3838
"description": "A glob pattern that defines the folders to search for. The glob pattern will be matched against the paths of resulting matches relative to their workspace."
3939
},
40-
"css-class-completion.excludeGlobPattern": {
40+
"html-css-class-completion.excludeGlobPattern": {
4141
"type": "string",
4242
"default": "node_modules∕*",
4343
"description": "A glob pattern that defines files and folders to exclude. The glob pattern will be matched against the file paths of resulting matches relative to their workspace."

src/fetcher.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ class Fetcher {
55
static async findAllParseableDocuments(): Promise<vscode.Uri[]> {
66
const languages = ParseEngineRegistry.supportedLanguagesIds.join(',');
77

8-
const includeGlobPattern = vscode.workspace.getConfiguration().get('css-class-completion.includeGlobPattern');
9-
const excludeGlobPattern = vscode.workspace.getConfiguration().get('css-class-completion.excludeGlobPattern');
8+
const includeGlobPattern = vscode.workspace.getConfiguration().get('html-css-class-completion.includeGlobPattern');
9+
const excludeGlobPattern = vscode.workspace.getConfiguration().get('html-css-class-completion.excludeGlobPattern');
1010

1111
return await vscode.workspace.findFiles(`${includeGlobPattern}.{${languages}}`, `${excludeGlobPattern}`);
1212
}

0 commit comments

Comments
 (0)