Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #15

Merged
merged 2 commits into from
Aug 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# Change Log
All notable changes to the "CSS and SCSS Snippets" extension will be documented in this file.

## [0.18.1] - 2024-04-23

### Fixed

- Fixed description in README.md.

## [0.18.0] - 2024-03-31

### Added

- Added `_` for child brace scope `& { ... }`.
- Added `__` for simple brace scope `#{}` in SCSS.
- 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
- Added `true`, `false` and `null` for SCSS.

### Changed

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

### Removed

- Removed properties with prefixes.

## [0.17.0] - 2023-04-09

### Changed

- Added `l13Snippets.scss.useFunctionBlockPadding` to enable or disable line padding in function blocks.

## [0.16.0] - 2021-05-26

### Added

- Added `pointer-events` and `position: sticky;` for CSS.
- Added `@forward`, `@use` and `@at-root` for SCSS.

### Fixed

- Fixed some snippets.

## [0.15.0] - 2020-07-05

### Added

- Added values `round` and `space` for `background-repeat`.

### Changed

- Changed display name from `L13 CSS Snippets` to `CSS and SCSS Snippets`.

## [0.14.1] - 2020-04-19

### Fixed

- Fixed tab stop in `background-position: 0 0;`

## [0.14.0] - 2019-10-20

### Added

- Added complete snippet list as markdown.
- Added property "content".

## [0.13.1] - 2019-08-25

### Fixed

- Fixed link in README

## [0.13.0] - 2019-08-25

- Initial release
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -134,20 +134,19 @@ __The following prefixes are just examples to explain the rules.__ To see the co
| ------: | ------- |
| `@e1` | <b>@e</b>xtend NAME; |

### 6. A SassScript expression uses an underscore "\_".
### 6. A SassScript expression uses two underscores "\_\_".

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

| Prefix | Snippet |
| ------: | ------- |
| `_` | #<b>{</b> ... <b>}</b> |
| `__` | #<b>{</b> ... <b>}</b> |

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

| Prefix | Snippet |
| ------: | ------- |
| `_` | #<b>{</b> ... <b>}</b> |
| `__` | & <b>{</b> ... <b>}</b> |
| `_` | & <b>{</b> ... <b>}</b> |
| `_h_` | &:hover <b>{</b> ... <b>}</b> |
| `_0_` | ~ * <b>{</b> ... <b>}</b> |
| `_1_` | > * <b>{</b> ... <b>}</b> |
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"name": "l13-css-snippets",
"displayName": "CSS and SCSS Snippets",
"description": "Snippets for CSS and SCSS",
"version": "0.18.0",
"version": "0.18.1",
"publisher": "L13RARY",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/l13/vscode-css-snippets/blob/master/README.md",