Skip to content

Commit 544edfc

Browse files
authored
Merge pull request #15 from L13/develop
Develop
2 parents 8f12745 + 803ec0a commit 544edfc

File tree

4 files changed

+24
-7
lines changed

4 files changed

+24
-7
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
# Change Log
22
All notable changes to the "CSS and SCSS Snippets" extension will be documented in this file.
33

4+
## [0.18.1] - 2024-04-23
5+
6+
### Fixed
7+
8+
- Fixed description in README.md.
9+
410
## [0.18.0] - 2024-03-31
511

612
### Added
13+
714
- Added `_` for child brace scope `& { ... }`.
815
- Added `__` for simple brace scope `#{}` in SCSS.
916
- Added `#{clipboard}` and `#{selection}` for keyboard shortcut usage.
@@ -16,52 +23,63 @@ All notable changes to the "CSS and SCSS Snippets" extension will be documented
1623
- Added `true`, `false` and `null` for SCSS.
1724

1825
### Changed
26+
1927
- Changed prefix for color from `_` to `#`.
2028
- Simplified SCSS include.
2129
- Strings are always single quote.
2230
- Some fixes and clean up like simplified font.
2331
- Eliminated a lot of duplicated prefixes with value selection.
2432

2533
### Removed
34+
2635
- Removed properties with prefixes.
2736

2837
## [0.17.0] - 2023-04-09
2938

3039
### Changed
40+
3141
- Added `l13Snippets.scss.useFunctionBlockPadding` to enable or disable line padding in function blocks.
3242

3343
## [0.16.0] - 2021-05-26
3444

3545
### Added
46+
3647
- Added `pointer-events` and `position: sticky;` for CSS.
3748
- Added `@forward`, `@use` and `@at-root` for SCSS.
3849

3950
### Fixed
51+
4052
- Fixed some snippets.
4153

4254
## [0.15.0] - 2020-07-05
4355

4456
### Added
57+
4558
- Added values `round` and `space` for `background-repeat`.
4659

4760
### Changed
61+
4862
- Changed display name from `L13 CSS Snippets` to `CSS and SCSS Snippets`.
4963

5064
## [0.14.1] - 2020-04-19
5165

5266
### Fixed
67+
5368
- Fixed tab stop in `background-position: 0 0;`
5469

5570
## [0.14.0] - 2019-10-20
5671

5772
### Added
73+
5874
- Added complete snippet list as markdown.
5975
- Added property "content".
6076

6177
## [0.13.1] - 2019-08-25
6278

6379
### Fixed
80+
6481
- Fixed link in README
6582

6683
## [0.13.0] - 2019-08-25
84+
6785
- Initial release

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,20 +134,19 @@ __The following prefixes are just examples to explain the rules.__ To see the co
134134
| ------: | ------- |
135135
| `@e1` | <b>@e</b>xtend NAME; |
136136

137-
### 6. A SassScript expression uses an underscore "\_".
137+
### 6. A SassScript expression uses two underscores "\_\_".
138138

139139
See also [Recommended Keyboard Shortcuts](#recommended-keyboard-shortcuts).
140140

141141
| Prefix | Snippet |
142142
| ------: | ------- |
143-
| `_` | #<b>{</b> ... <b>}</b> |
143+
| `__` | #<b>{</b> ... <b>}</b> |
144144

145145
### 7. A child scope starts with an underscore "\_".
146146

147147
| Prefix | Snippet |
148148
| ------: | ------- |
149-
| `_` | #<b>{</b> ... <b>}</b> |
150-
| `__` | & <b>{</b> ... <b>}</b> |
149+
| `_` | & <b>{</b> ... <b>}</b> |
151150
| `_h_` | &:hover <b>{</b> ... <b>}</b> |
152151
| `_0_` | ~ * <b>{</b> ... <b>}</b> |
153152
| `_1_` | > * <b>{</b> ... <b>}</b> |

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "l13-css-snippets",
33
"displayName": "CSS and SCSS Snippets",
44
"description": "Snippets for CSS and SCSS",
5-
"version": "0.18.0",
5+
"version": "0.18.1",
66
"publisher": "L13RARY",
77
"license": "SEE LICENSE IN LICENSE.md",
88
"homepage": "https://github.com/l13/vscode-css-snippets/blob/master/README.md",

0 commit comments

Comments
 (0)