Skip to content
This repository was archived by the owner on Apr 8, 2023. It is now read-only.

Commit a02d272

Browse files
committed
v0.4.0 change gallery color.
improve readme
1 parent 566147d commit a02d272

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this extension will be documented in this file.
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## [0.4.0] - 2021-08-21
8+
9+
### Changed
10+
11+
- Change galleryBanner.color in package.json.
12+
- Improved FAQ in readme.
13+
714
## [0.3.0] - 2021-08-21
815

916
### Changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ These snippets are available for the follow [language identifiers](https://code.
4646

4747
You can install the [Snippets Ranger extension](https://marketplace.visualstudio.com/items?itemName=robole.snippets-ranger) to view the full list of snippets inside VS Code.
4848

49-
I didn't repeat any of the builtin JavaScript snippets.
49+
I didn't repeat any of the builtin JavaScript snippets (see [FAQ for more](#where-do-the-standard-markdown-snippets-come-from)).
5050

5151
<table>
5252
<thead><tr><th>Prefix</th><th>Name</th><th>Description</th><th>Body</th></tr></thead>
@@ -114,11 +114,13 @@ I didn't repeat any of the builtin JavaScript snippets.
114114

115115
## FAQ
116116

117-
### 1) Where do the standard markdown snippets come from?
117+
### 1) Where are the builtin JavaScripts?
118118

119-
There is a set of snippets for the standard markdown syntax installed with VS Code as part of the built-in markdown extension. [This is the source file](https://raw.githubusercontent.com/microsoft/vscode/94c9ea46838a9a619aeafb7e8afd1170c967bb55/extensions/javascript/snippets/javascript.code-snippets).
119+
There is a set of snippets for the JavaScript installed with VS Code as part of the built-in JavaScript extension. [This is the source file](https://raw.githubusercontent.com/microsoft/vscode/94c9ea46838a9a619aeafb7e8afd1170c967bb55/extensions/javascript/snippets/javascript.code-snippets).
120120

121-
The [Snippets Ranger extension](https://marketplace.visualstudio.com/items?itemName=robole.snippets-ranger) will show the built-in snippets in a good-looking webview.
121+
You can see these inside VS Code by:
122+
1. By opening a JavaScript file and running the commmand `Insert Snippet`, which gives a list of the snippets in the dropdown. However, this list also contains any user and extension snippets for JavaScript. Option 2 is preferable if you want to see a clear overview of the separate snippet sets.
123+
1. The [Snippets Ranger extension](https://marketplace.visualstudio.com/items?itemName=robole.snippets-ranger) will show you the built-in snippets in a good-looking webview inside VS Code.
122124

123125
### 2) How do I use the snippets?
124126

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"description": "Descriptive, easy to find JavaScript snippets, without nonsense abbreviations.",
99
"icon": "img/logo.png",
10-
"version": "0.3.0",
10+
"version": "0.4.0",
1111
"engines": {
1212
"vscode": ">=1.0.0"
1313
},
@@ -23,7 +23,7 @@
2323
"Snippets"
2424
],
2525
"galleryBanner": {
26-
"color": "#fafa61",
26+
"color": "#00da00",
2727
"theme": "light"
2828
},
2929
"keywords": [

0 commit comments

Comments
 (0)