Skip to content

Commit 26c703e

Browse files
committed
Updates for V1.1
1 parent 73b0b1c commit 26c703e

10 files changed

+1075
-1243
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@ To import and export snippets, open the command panel (cmd + shift + p) on Mac,
2828

2929
## Release Notes
3030

31+
32+
### 1.1.0
33+
- Added ability to delete all snippets using the command pallet
34+
- Terminal Snippets Export command
35+
- Added sorting to snippets to always sort alphabetically
36+
- Added ability to edit snippet tags & improved edit snippet form
37+
- Added snippet previewing in the main sidebar
38+
3139
### 1.0.0
3240

3341
- Added ability to import & export snippets

package.json

+29-10
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Snippet",
44
"description": "Extension for creating code and managing user defined code snippets",
55
"license": "SEE LICENSE IN LICENSE.md",
6-
"version": "1.0.2",
6+
"version": "1.1.0",
77
"publisher": "devonray",
88
"icon": "resources/logo.png",
99
"repository": {
@@ -39,6 +39,8 @@
3939
"onCommand:extension.insertSnipp",
4040
"onCommand:extension.importSnipps",
4141
"onCommand:extension.exportSnipps",
42+
"onCommand:extension.exportTerminalSnipps",
43+
"onCommand:extension.deleteAllSnippets",
4244
"onCommand:extension.refreshEntry",
4345
"onCommand:extension.importSnipps",
4446
"onCommand:extension.addEntry",
@@ -165,6 +167,24 @@
165167
"dark": "resources/icons/import-snipps.svg"
166168
}
167169
},
170+
{
171+
"command": "extension.exportTerminalSnipps",
172+
"group": "snippet",
173+
"title": "Export Terminal Snippets",
174+
"icon": {
175+
"light": "resources/icons/import-snipps.svg",
176+
"dark": "resources/icons/import-snipps.svg"
177+
}
178+
},
179+
{
180+
"command": "extension.deleteAllSnippets",
181+
"group": "snippet",
182+
"title": "Delete All Snippets",
183+
"icon": {
184+
"light": "resources/icons/import-snipps.svg",
185+
"dark": "resources/icons/import-snipps.svg"
186+
}
187+
},
168188
{
169189
"command": "extension.importSnipps",
170190
"group": "snippet",
@@ -267,19 +287,18 @@
267287
"test": "nyc mocha 'out/test/**/*.test.js'"
268288
},
269289
"devDependencies": {
270-
"@types/glob": "^7.1.1",
271-
"@types/mocha": "^7.0.1",
272-
"@types/node": "^12.11.7",
290+
"@types/glob": "^8.0.0",
291+
"@types/mocha": "^10.0.1",
292+
"@types/node": "^18.11.13",
273293
"@types/vscode": "^1.42.0",
274-
"@typescript-eslint/eslint-plugin": "^2.18.0",
275-
"@typescript-eslint/parser": "^2.18.0",
294+
"@typescript-eslint/eslint-plugin": "^5.46.0",
295+
"@typescript-eslint/parser": "^5.46.0",
276296
"eslint": "^6.8.0",
277-
"glob": "^7.1.6",
278-
"mocha": "^7.0.1",
279-
"typescript": "^3.7.5"
297+
"glob": "^8.0.3",
298+
"mocha": "^10.2.0",
299+
"typescript": "^4.9.4"
280300
},
281301
"dependencies": {
282-
"axios": "^0.21.2",
283302
"nyc": "^15.1.0"
284303
}
285304
}

src/components/edit_snipp.ts

+11-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function editSnippWebviewContent(snipp: Snipp) {
1616
padding: 10px;
1717
border: 1px solid;
1818
border-radius: 6px;
19-
font-size: 19px;
19+
font-size: 15px;
2020
font-weight: 300;
2121
}
2222
textarea {
@@ -27,7 +27,7 @@ export default function editSnippWebviewContent(snipp: Snipp) {
2727
padding: 10px;
2828
border: 1px solid;
2929
border-radius: 6px;
30-
font-size: 19px;
30+
font-size: 15px;
3131
font-weight: 300;
3232
}
3333
@@ -85,13 +85,21 @@ export default function editSnippWebviewContent(snipp: Snipp) {
8585
}" required placeholder="Enter Snippet Name" name="name">
8686
<label>Content</label>
8787
88-
<textarea name="content" rows="40" required>${snipp.content}</textarea>
88+
<textarea name="content" rows="20" required>${snipp.content}</textarea>
8989
9090
<!-- ${snipp.tags.map(
9191
(tag, index) => `
9292
<input type="text" value="${tag}" placeholder="Enter Tag" name="tag[${index}]">
9393
`
9494
)} -->
95+
96+
<label>Tags (Separated by + symbol)</label>
97+
<input type="text" value="${snipp.tags.reduce(
98+
(curr, next) => `${curr} ${curr !== "" ? "+" : ""} ${next}`,
99+
""
100+
)}" placeholder="Enter Tags separated by +" name="tags">
101+
102+
95103
<p id="form-error"></p>
96104
<button type="submit">Save Snippet</button>
97105

src/components/login_form.ts

-239
This file was deleted.

0 commit comments

Comments
 (0)