{"id":18823006,"url":"https://github.com/tomjs/vscode-snippets-manager","last_synced_at":"2025-07-09T09:05:48.254Z","repository":{"id":246378710,"uuid":"817106914","full_name":"tomjs/vscode-snippets-manager","owner":"tomjs","description":"Snippets Manager for VS Code","archived":false,"fork":false,"pushed_at":"2024-11-27T12:45:36.000Z","size":801,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2024-11-27T13:36:39.062Z","etag":null,"topics":["extension","manager","snippets","vscode"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=tomjs.vscode-snippets-manager","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tomjs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-19T03:23:00.000Z","updated_at":"2024-11-27T12:45:40.000Z","dependencies_parsed_at":"2024-06-27T17:47:13.527Z","dependency_job_id":"4816fc2f-575d-4fb8-8a17-2d8dffdb7224","html_url":"https://github.com/tomjs/vscode-snippets-manager","commit_stats":null,"previous_names":["tomjs/vscode-snippets-manager"],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomjs%2Fvscode-snippets-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomjs%2Fvscode-snippets-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomjs%2Fvscode-snippets-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomjs%2Fvscode-snippets-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tomjs","download_url":"https://codeload.github.com/tomjs/vscode-snippets-manager/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":231811054,"owners_count":18430058,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["extension","manager","snippets","vscode"],"created_at":"2024-11-08T00:52:21.831Z","updated_at":"2025-07-09T09:05:48.247Z","avatar_url":"https://github.com/tomjs.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Code Snippets Manager\n\nVS Code 代码片段管理 / Snippets Manager for VS Code.\n\n## 说明 (Note)\n\n支持全局和当前工作空间中的代码片段的管理。\n\nSupports the management of code snippets in the global and current workspace.\n\n本项目受 [Easy Snippet](https://marketplace.visualstudio.com/items?itemName=inu1255.easy-snippet) 这个扩展的启发，并参考了他的代码和思路，非常感谢。项目中使用的部分图标资源，来自 [vscode-icons](https://github.com/vscode-icons/vscode-icons)，仅做了颜色修改。本项目由兴趣和个人需求而开发，不一定满足所有人的需求。\n\nThis project is inspired by the extension [Easy Snippet](https://marketplace.visualstudio.com/items?itemName=inu1255.easy-snippet) and refers to his code and ideas. Thanks very much. Some icon resources used in the project are from [vscode-icons](https://github.com/vscode-icons/vscode-icons), and only the color is modified. This project is developed out of interest and personal needs, and may not meet the needs of everyone.\n\n## 功能 Features\n\n- 支持多类型片段 Support multiple types of Snippets\n  - 语言 Language\n  - 全局 Global\n  - 工作空间 Workspace\n- 支持片段的拖拽排序 Support drag and sort of snippets\n- 国际化 Internationalization\n  - 简体中文\n  - English\n\n### 属性 Properties\n\n- `tomjs.snippets.fixedLanguages`：代码片段优先可选语言。Optional languages for snippets to be displayed first\n- `tomjs.snippets.scopeLanguages`：代码片段 scope 属性的可选语言，未配置时为所有被支持的语言。Optional languages for the scope attribute of the snippets. If not configured, it will be all supported languages.\n\n比如前端开发者，可以如下设置 For example, front-end developers can set it as follows\n\n```json\n{\n  \"tomjs.snippets.scopeLanguages\": [\n    \"typescript\",\n    \"javascript\",\n    \"typescriptreact\",\n    \"javascriptreact\",\n    \"vue\",\n    \"html\",\n    \"less\",\n    \"scss\"\n  ]\n}\n```\n\n## 截图 Screenshots\n\n部分截图，具体请操作。Some screenshots, please operate for details.\n\n- 新增分组 Add Group\n\n![group](https://raw.githubusercontent.com/tomjs/vscode-snippets-manager/main/resources/screenshots/group.png)\n\n- 新增片段 Add Snippet\n\n![snippet1](https://raw.githubusercontent.com/tomjs/vscode-snippets-manager/main/resources/screenshots/snippet1.png)\n\n- 编辑片段 Edit Snippet\n\n![snippet2](https://raw.githubusercontent.com/tomjs/vscode-snippets-manager/main/resources/screenshots/snippet2.png)\n\n- 编辑代码 Edit Snippet Code\n\n![snippet3](https://raw.githubusercontent.com/tomjs/vscode-snippets-manager/main/resources/screenshots/snippet3.png)\n\n## Related\n\n- [Easy Snippet](https://marketplace.visualstudio.com/items?itemName=inu1255.easy-snippet): Another easy way to manage snippet.\n- [vscode-icons](https://github.com/vscode-icons/vscode-icons): Bring real icons to your Visual Studio Code.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomjs%2Fvscode-snippets-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftomjs%2Fvscode-snippets-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomjs%2Fvscode-snippets-manager/lists"}