Skip to content

Commit 06a65f6

Browse files
committed
update
1 parent bd7d443 commit 06a65f6

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
2-
"name": "workspace-snippets",
3-
"displayName": "Workspace snippets",
2+
"name": "workspace-code-snippets",
3+
"displayName": "Workspace Code Snippets",
44
"author": "Felix Swinkels",
55
"homepage": "https://felix.surf/",
6-
"description": "Create workspace snippet from selection",
6+
"description": "Create code snippets in your workspace and share them with your team.",
7+
"repository": "https://github.com/feli0x/workspace-code-snippets",
78
"version": "0.0.1",
89
"engines": {
910
"vscode": "^1.82.0"
@@ -16,8 +17,8 @@
1617
"contributes": {
1718
"commands": [
1819
{
19-
"command": "extension.createWorkspaceSnippet",
20-
"title": "Create Workspace Snippet",
20+
"command": "extension.createWorkspaceCodeSnippet",
21+
"title": "Create Workspace Code Snippet",
2122
"category": "Snippets"
2223
}
2324
]

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import * as fs from "fs/promises";
44

55
export function activate(context: vscode.ExtensionContext) {
66
const disposable = vscode.commands.registerCommand(
7-
"extension.createWorkspaceSnippet",
7+
"extension.createWorkspaceCodeSnippet",
88
async () => {
99
const editor = vscode.window.activeTextEditor;
1010
if (!editor) {

0 commit comments

Comments
 (0)