Skip to content

Commit 6164b91

Browse files
committed
- changed property name
1 parent 2bf1611 commit 6164b91

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to the "CSS and SCSS Snippets" extension will be documented
44
## [0.17.0] - 2023-04-02
55

66
### Changed
7-
- Added `l13CSSSnippets.useFunctionBlockPadding` to enable or disable empty lines in function block scopes.
7+
- Added `l13Snippets.scss.useFunctionBlockPadding` to enable or disable line padding in function blocks.
88

99
## [0.16.0] - 2021-05-26
1010

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This extension contains property snippets for CSS and rule snippets for SCSS.
44

55
## What's new in CSS Snippets 0.17.0
66

7-
- Added `l13SHSnippets.useFunctionBlockPadding` to enable or disable empty lines in function block scopes.
7+
- Added `l13Snippets.shellScript.useFunctionBlockPadding` to enable or disable line padding in function blocks.
88

99
## Index
1010

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@
5757
],
5858
"configuration": {
5959
"type": "object",
60-
"title": "CSS & SCSS Snippets",
60+
"title": "SCSS Snippets",
6161
"properties": {
62-
"l13CSSSnippets.useFunctionBlockPadding": {
62+
"l13Snippets.scss.useFunctionBlockPadding": {
6363
"type": "boolean",
64-
"default": true,
64+
"default": false,
6565
"description": "Controls if a function block has additional empty lines."
6666
}
6767
}

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function activate (context: vscode.ExtensionContext) {
2828

2929
const changeConfiguration = vscode.workspace.onDidChangeConfiguration((event) => {
3030

31-
if (event.affectsConfiguration('l13CSSSnippets.useFunctionBlockPadding')) {
31+
if (event.affectsConfiguration('l13Snippets.scss.useFunctionBlockPadding')) {
3232
buildAllCompletionItems();
3333
}
3434

@@ -42,7 +42,7 @@ export function activate (context: vscode.ExtensionContext) {
4242

4343
function get (key: string, value?: any) {
4444

45-
return vscode.workspace.getConfiguration('l13CSSSnippets').get(key, value);
45+
return vscode.workspace.getConfiguration('l13Snippets.scss').get(key, value);
4646

4747
}
4848

0 commit comments

Comments
 (0)