Skip to content
Merged
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# Change Log
### 4.1.0

- [[#113](https://github.com/tahabasri/snippets/pull/113)] Added folder coloring with optional cascade to child folders.
- [[#137](https://github.com/tahabasri/snippets/pull/137)]
- Redesigned the snippet editor into a two-panel layout.
- Fixed snippet edits randomly not saving.
- [[#138](https://github.com/tahabasri/snippets/pull/138)] Fixed snippet IntelliSense missing in remote (SSH) sessions.
- [[#136](https://github.com/tahabasri/snippets/pull/136)] Added setting to open folders collapsed by default.
- [[#135](https://github.com/tahabasri/snippets/pull/135)] Surfaced language-less Snippets as Global in IntelliSense.
- [[#134](https://github.com/tahabasri/snippets/pull/134)] Added support for importing snippets into a dedicated folder (without overwriting).

### 4.0.0

- [[#116](https://github.com/tahabasri/snippets/pull/116)]
Expand Down
162 changes: 131 additions & 31 deletions README.md

Large diffs are not rendered by default.

Binary file added images/features/070-folder-colors.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/features/071-snippet-editor.gif.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/logo/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions images/logo/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 4 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "snippets",
"displayName": "Snippets",
"description": "Supercharge your Snippets in VS Code — Manage your code snippets & AI prompts without quitting your editor.",
"version": "4.0.0",
"version": "4.1.0",
"preview": false,
"license": "SEE LICENSE IN LICENSE.txt",
"publisher": "tahabasri",
Expand Down Expand Up @@ -40,10 +40,6 @@
"Code Block",
"IntelliSense"
],
"galleryBanner": {
"color": "#ffc107",
"theme": "dark"
},
"activationEvents": [
"onStartupFinished"
],
Expand All @@ -62,7 +58,7 @@
},
{
"view": "snippetsExplorer",
"contents": "In order to use snippets, save some code here.\n[Add Snippet](command:globalSnippetsCmd.addSnippet)\n[Add Snippet Folder](command:globalSnippetsCmd.addSnippetFolder)\n[Import Snippets](command:globalSnippetsCmd.importSnippets)\nTo import Snippets from VS Code, you can export them from an open VS Code window, and then, use the Import Snippets command in Windsurf.\nTo learn more about how to use snippets [read the docs](https://github.com/tahabasri/snippets/blob/main/README.md#features).",
"contents": "In order to use snippets, save some code here.\n[Add Snippet](command:globalSnippetsCmd.addSnippet)\n[Add Snippet Folder](command:globalSnippetsCmd.addSnippetFolder)\n[Import Snippets](command:globalSnippetsCmd.importSnippets)\nTo import Snippets from VS Code, you can export them from an open VS Code window, and then, use the Import Snippets command in Devin AI (aka Windsurf).\nTo learn more about how to use snippets [read the docs](https://github.com/tahabasri/snippets/blob/main/README.md#features).",
"when": "snippets.host == windsurf"
},
{
Expand Down Expand Up @@ -155,12 +151,12 @@
},
{
"command": "globalSnippetsCmd.addToCursorAIPane",
"title": "Add to Cursor AI Pane",
"title": "Add to Cursor Pane",
"category": "Snippets"
},
{
"command": "globalSnippetsCmd.addAsCodeSnippetToCursorAIPane",
"title": "Add as Code Snippet to Cursor AI Pane",
"title": "Add as Code Snippet to Cursor Pane",
"category": "Snippets"
},
{
Expand Down
5 changes: 3 additions & 2 deletions resources/icons/logo_w.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { DecorationProvider } from './provider/decorationProvider';
*/
export function activate(context: vscode.ExtensionContext) {
// exact version for which show Changelog panel
const changelogVersion = '4.0.0';
const changelogVersion = '4.1.0';

//** variables **//
// global settings
Expand Down
Loading