File tree Expand file tree Collapse file tree 1 file changed +20
-4
lines changed Expand file tree Collapse file tree 1 file changed +20
-4
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " insert-file" ,
3
3
"displayName" : " Insert File" ,
4
4
"description" : " insert a file contents in your active editor." ,
5
- "version" : " 0.0.1 " ,
5
+ "version" : " 0.0.2 " ,
6
6
"publisher" : " crest" ,
7
7
"engines" : {
8
8
"vscode" : " ^1.0.0"
11
11
" Other"
12
12
],
13
13
"activationEvents" : [
14
- " onCommand:extension.insertFile "
14
+ " * "
15
15
],
16
16
"main" : " ./out/src/extension" ,
17
17
"contributes" : {
18
18
"commands" : [{
19
19
"command" : " extension.insertFile" ,
20
- "title" : " Insert File"
21
- }]
20
+ "title" : " Insert File:Insert File"
21
+ },
22
+ {
23
+ "command" : " extension.insertAsLink" ,
24
+ "title" : " Insert File:Insert As Link"
25
+ }],
26
+ "configuration" : {
27
+ "type" : " object" ,
28
+ "title" : " VSCode InsertFile configuration" ,
29
+
30
+ "properties" : {
31
+ "insert-file.encoding" : {
32
+ "type" : " string" ,
33
+ "default" : " utf-8" ,
34
+ "description" : " default file encoding"
35
+ }
36
+ }
37
+ }
22
38
},
23
39
"scripts" : {
24
40
"vscode:prepublish" : " node ./node_modules/vscode/bin/compile" ,
You can’t perform that action at this time.
0 commit comments