Skip to content

Commit af66aea

Browse files
committed
Rename commands to be shorter
1 parent db178f5 commit af66aea

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## [Unreleased]
4+
5+
### Features
6+
7+
- Rename VS Code commands to be shorter and more concise.
8+
- `Copy Snippet Without Leading Indentation` is now `Copy Snippet`
9+
- `Copy Snippet Without Leading Indentation as Markdown Code Block` is now `Copy Snippet as Markdown Code Block`
10+
311
## [0.2.3]
412

513
### Fixes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ All features can be used via different ways in VS Code
2424

2525
![Command in Context Menu](https://github.com/lumaxis/snippet-copy/raw/main/images/context-menu.png)
2626

27-
### Copy Snippet Without Leading Indentation
27+
### Copy Snippet
2828

2929
Simply get a copy of your currently selected code or text snippet added to your clipboard – without any unnecessary indentation that you would otherwise need to remove manually.
3030

31-
### Copy Snippet Without Leading Indentation as Markdown Code Block
31+
### Copy Snippet as Markdown Code Block
3232

3333
This command has an additional configuration option that let's you determine if the Markdown code block should contain the file's language identifier which enables [syntax highlighting](https://help.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks#syntax-highlighting) in some places:
3434

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
"commands": [
3333
{
3434
"command": "snippet-copy.copySnippet",
35-
"title": "Copy Snippet Without Leading Indentation"
35+
"title": "Copy Snippet"
3636
},
3737
{
3838
"command": "snippet-copy.copySnippetAsMarkdownCodeBlock",
39-
"title": "Copy Snippet Without Leading Indentation as Markdown Code Block"
39+
"title": "Copy Snippet as Markdown Code Block"
4040
}
4141
],
4242
"configuration": {

0 commit comments

Comments
 (0)