File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to the "CSS and SCSS Snippets" extension will be documented
4
4
## [ 0.17.0] - 2023-04-02
5
5
6
6
### 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 .
8
8
9
9
## [ 0.16.0] - 2021-05-26
10
10
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ This extension contains property snippets for CSS and rule snippets for SCSS.
4
4
5
5
## What's new in CSS Snippets 0.17.0
6
6
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 .
8
8
9
9
## Index
10
10
Original file line number Diff line number Diff line change 57
57
],
58
58
"configuration" : {
59
59
"type" : " object" ,
60
- "title" : " CSS & SCSS Snippets" ,
60
+ "title" : " SCSS Snippets" ,
61
61
"properties" : {
62
- "l13CSSSnippets .useFunctionBlockPadding" : {
62
+ "l13Snippets.scss .useFunctionBlockPadding" : {
63
63
"type" : " boolean" ,
64
- "default" : true ,
64
+ "default" : false ,
65
65
"description" : " Controls if a function block has additional empty lines."
66
66
}
67
67
}
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export function activate (context: vscode.ExtensionContext) {
28
28
29
29
const changeConfiguration = vscode . workspace . onDidChangeConfiguration ( ( event ) => {
30
30
31
- if ( event . affectsConfiguration ( 'l13CSSSnippets .useFunctionBlockPadding' ) ) {
31
+ if ( event . affectsConfiguration ( 'l13Snippets.scss .useFunctionBlockPadding' ) ) {
32
32
buildAllCompletionItems ( ) ;
33
33
}
34
34
@@ -42,7 +42,7 @@ export function activate (context: vscode.ExtensionContext) {
42
42
43
43
function get ( key : string , value ?: any ) {
44
44
45
- return vscode . workspace . getConfiguration ( 'l13CSSSnippets ' ) . get ( key , value ) ;
45
+ return vscode . workspace . getConfiguration ( 'l13Snippets.scss ' ) . get ( key , value ) ;
46
46
47
47
}
48
48
You can’t perform that action at this time.
0 commit comments