Skip to content

Commit d5922a7

Browse files
committed
Merge branch 'release/v0.2.0'
2 parents 40ced71 + 5e7bb90 commit d5922a7

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ insert_final_newline = true
77

88
[*.{md,yml}]
99
indent_style = space
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

CHANGELOG.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
# Change Log
22

3-
## [Unreleased]
3+
## [0.2.0]
44

55
### Features
66

7-
- Add additional command to copy snippet with surrounding Markdown code block syntax
8-
- Add configuration option to add language identifier to Markdown code blocks
7+
- The extension now has a shiny new icon! Thanks @dipree 🙌🏼
8+
- Add additional command to copy snippet with surrounding Markdown code block syntax
9+
The command is called `Copy Snippet Without Leading Indentation as Markdown Code Block` in the Command Palette and its default keyboard shortcut is `Win/Meta/Cmd+Ctrl+Shift+c`
10+
- Add configuration option to add language identifier to Markdown code blocks
11+
This option can be found under the identifier `snippet-copy.addLanguageIdentifierToMarkdownBlock` and its default is `false`.
912
- Add support for copying snippets from multiple selections
1013

1114
### Chores

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22
"name": "snippet-copy",
33
"displayName": "Snippet Copy",
44
"description": "Easily copy snippets of code without unnecessary indentation, making it easier to share them e.g. via Slack",
5-
"version": "0.1.1",
5+
"version": "0.2.0",
66
"icon": "images/icon.png",
7+
"galleryBanner": {
8+
"color": "#1C252C",
9+
"theme": "light"
10+
},
711
"preview": true,
812
"publisher": "lumaxis",
913
"author": {

0 commit comments

Comments
 (0)