Skip to content

Commit c0c5597

Browse files
committed
misc.
1 parent f033748 commit c0c5597

File tree

4 files changed

+26
-33
lines changed

4 files changed

+26
-33
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## ChangeLog
2+
3+
### 0.9.0
4+
- Fix README.md, package.json, test-suite
5+
- Refactor code
6+
- replace inputBox to showDialog
7+
- Add some commands
8+
9+
### 0.0.1
10+
11+
Initial release of insert-file.
12+
13+
### 0.0.2
14+
BugFix
15+
16+
Add InsertFileAsMakrdownLink Command.

README.md

Lines changed: 5 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,42 +2,19 @@
22
This extension provides that insert a file contents in active editor.
33

44
## Features
5-
This extension provides 'insert-file' command.
5+
This extension provides 'Insert File' commands. These commands support selected text data into the active editor, and insert link and block by markdown notation.
66

7-
- Insert File
7+
- Insert File
88
- Insert File As Link (Markdown)
9+
- Insert File As Code Block (Markdown)
10+
- Insert File As Image Link (Markdown)
911

10-
If your want to insert a file in your editing text, enter 'insert-file' command in command pallet and select a file
11-
then selected file contents will insert into your editing text.
12-
13-
![operation](https://raw.githubusercontent.com/thayamizu/insert-file/master/img/img1.gif)
14-
12+
![](https://raw.githubusercontent.com/thayamizu/insert-file/master/img/img1.gif)
1513

1614
## Requirements
1715

1816
Visual Studio Code 1.0 later
1917

20-
21-
## Release Notes
22-
23-
Users appreciate release notes as you update your extension.
24-
25-
### 0.0.1
26-
27-
Initial release of insert-file.
28-
29-
### 0.0.2
30-
BugFix
31-
32-
Add InsertFileAsMakrdownLink Command.
33-
34-
### 0.1.0
35-
- Fix README.md, package.json, test-suite
36-
- Refactor code
37-
- replace inputBox to showDialog
38-
39-
-----------------------------------------------------------------------------------------------------------
40-
4118
## Repository
4219
The Repository is hosted by GitHub.
4320

img/img1.gif

98.4 MB
Loading

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "insert-file",
33
"displayName": "Insert File",
44
"description": "insert a file contents in your active editor.",
5-
"version": "1.0.0",
5+
"version": "0.9.0",
66
"publisher": "crest",
77
"engines": {
88
"vscode": "^1.0.0"
@@ -18,19 +18,19 @@
1818
"commands": [
1919
{
2020
"command": "extension.insertFile",
21-
"title": "Insert File:Insert file contents"
21+
"title": "Insert File:Insert File Contents"
2222
},
2323
{
2424
"command": "extension.insertAsLink",
25-
"title": "Insert File:Insert as link"
25+
"title": "Insert File:Insert as Link"
2626
},
2727
{
2828
"command": "extension.insertAsBlock",
29-
"title": "Insert File:Insert file contents as code block"
29+
"title": "Insert File:Insert File Contents as Code Block"
3030
},
3131
{
3232
"command": "extension.insertAsImageLink",
33-
"title": "Insert File:Insert as image link"
33+
"title": "Insert File:Insert as Image Link"
3434
}
3535
],
3636
"configuration": {

0 commit comments

Comments
 (0)