Skip to content

Commit f6084ed

Browse files
authored
Merge pull request #6 from L13/develop
Develop
2 parents f049f81 + 334aacb commit f6084ed

File tree

6 files changed

+30
-12
lines changed

6 files changed

+30
-12
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
2-
All notable changes to the "L13 CSS Snippets" extension will be documented in this file.
2+
All notable changes to the "CSS Snippets" extension will be documented in this file.
3+
4+
## [0.15.0] - 2020-07-05
5+
6+
### Added
7+
- Added values `round` and `space` for `background-repeat`.
8+
9+
### Changed
10+
- Changed display name from `L13 CSS Snippets` to `CSS and SCSS Snippets`.
311

412
## [0.14.1] - 2020-04-19
513

LICENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2019 L13|RARY
1+
Copyright (c) 2019 - 2020 L13|RARY
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1-
# L13 CSS and SCSS Snippets
1+
# CSS and SCSS Snippets
22

33
This extension contains property snippets for CSS and rule snippets for SCSS.
44

5-
This extension is part of the [L13 Extension Pack](https://marketplace.visualstudio.com/items?itemName=L13RARY.l13-extension-pack).
5+
## What's new in CSS Snippets 0.15.0
66

7-
## What's new in L13 CSS Snippets 0.14.1
8-
9-
- Fixed tab stop in `background-position: 0 0;`
7+
- Added values `round` and `space` for `background-repeat`.
108

119
## Index
1210

13-
1. [Introduction](#Introduction)
11+
1. [Introduction](#introduction)
1412
1. [Shortcut rules for CSS snippets](#shortcut-rules-for-css-snippets)
1513
1. [Shortcut rules for SCSS snippets](#shortcut-rules-for-scss-snippets)
1614
1. [Recommended Settings](#recommended-settings)
1715
1. [Recommended Keyboard Shortcuts](#recommended-keyboard-shortcuts)
16+
1. [Recommended Extensions](#recommended-extensions)
1817

1918
## Introduction
2019

@@ -145,4 +144,8 @@ Please have the following keyboard shortcuts always in mind, because these are f
145144
* `Tab` - Jump to the next tab stop of the snippet.
146145
* `DownArrow` - Move the caret down one line.
147146
* `Ctrl + Enter` - Insert line below, even if the caret is in the middle of a line.
148-
* `Ctrl + Shift + Enter` - Insert line above, even if the caret is in the middle of a line.
147+
* `Ctrl + Shift + Enter` - Insert line above, even if the caret is in the middle of a line.
148+
149+
## Recommended Extensions
150+
151+
- [Extension Pack](https://marketplace.visualstudio.com/items?itemName=L13RARY.l13-extension-pack)

SNIPPETS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,12 @@ Complete list of all CSS and SCSS snippets for Visual Studio Code. The rules for
166166
| `bprt` | `background-position: right top;` |
167167
| `brnr` | `background-repeat: no-repeat;` |
168168
| `brr` | `background-repeat: repeat;` |
169+
| `brr` | `background-repeat: round;` |
170+
| `brrs` | `background-repeat: round space;` |
169171
| `brrx` | `background-repeat: repeat-x;` |
170172
| `brry` | `background-repeat: repeat-y;` |
173+
| `brs` | `background-repeat: space;` |
174+
| `brsr` | `background-repeat: space round;` |
171175
| `-bs2` | `-moz-background-size: ${1:0} ${0:0}; -o-background-size: ${1:0} ${0:0}; -webkit-background-size: ${1:0} ${0:0}; background-size: ${1:0} ${0:0};` |
172176
| `bs2` | `background-size: ${1:0} ${0:0};` |
173177
| `-bsa` | `-moz-background-size: auto; -o-background-size: auto; -webkit-background-size: auto; background-size: auto;` |

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"name": "l13-css-snippets",
3-
"displayName": "L13 CSS Snippets",
3+
"displayName": "CSS and SCSS Snippets",
44
"description": "Snippets for CSS and SCSS",
5-
"version": "0.14.1",
5+
"version": "0.15.0",
66
"publisher": "L13RARY",
7-
"preview": true,
87
"license": "SEE LICENCE IN LICENCE.md",
98
"homepage": "https://github.com/l13/vscode-css-snippets/blob/master/README.md",
109
"repository": {

snippets/css.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,12 @@
188188

189189
"background-repeat: no-repeat;": { "prefix": "brnr", "body": ["background-repeat: no-repeat;"], "description": "" },
190190
"background-repeat: repeat;": { "prefix": "brr", "body": ["background-repeat: repeat;"], "description": "" },
191+
"background-repeat: round;": { "prefix": "brr", "body": ["background-repeat: round;"], "description": "" },
192+
"background-repeat: round space;": { "prefix": "brrs", "body": ["background-repeat: round space;"], "description": "" },
191193
"background-repeat: repeat-x;": { "prefix": "brrx", "body": ["background-repeat: repeat-x;"], "description": "" },
192194
"background-repeat: repeat-y;": { "prefix": "brry", "body": ["background-repeat: repeat-y;"], "description": "" },
195+
"background-repeat: space;": { "prefix": "brs", "body": ["background-repeat: space;"], "description": "" },
196+
"background-repeat: space round;": { "prefix": "brsr", "body": ["background-repeat: space round;"], "description": "" },
193197

194198
"-prefix-background-size: 0 0;": { "prefix": "-bs2", "body": ["-moz-background-size: ${1:0} ${0:0};", "-o-background-size: ${1:0} ${0:0};", "-webkit-background-size: ${1:0} ${0:0};", "background-size: ${1:0} ${0:0};"], "description": "" },
195199
"background-size: 0 0;": { "prefix": "bs2", "body": ["background-size: ${1:0} ${0:0};"], "description": "" },

0 commit comments

Comments
 (0)