forked from generalov/open-in-editor-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 3.53 KB
/
package.json
File metadata and controls
142 lines (142 loc) · 3.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "open-in-editor-vscode",
"displayName": "Open in Editor",
"description": "Open a file in Visual Studio, Atom Editor, Emacs, IntelliJ IDEA Community Edition, Sublime Text, PhpStorm, Vim, WebStorm or any other external editor from VS Code.",
"version": "1.0.1",
"engines": {
"vscode": "^1.11.0"
},
"publisher": "generalov",
"license": "SEE LICENSE IN LICENSE",
"keywords": [
"open",
"edit",
"switch",
"file",
"editor"
],
"categories": [
"Other"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/generalov/open-in-editor-vscode.git"
},
"bugs": {
"url": "https://github.com/generalov/open-in-editor-vscode/issues",
"email": "e.generalov@gmail.com"
},
"activationEvents": [
"onCommand:alt-editor.openFile"
],
"contributes": {
"commands": [
{
"command": "alt-editor.openFile",
"title": "Open in External Editor"
}
],
"keybindings": [
{
"key": "Alt+Shift+E",
"command": "alt-editor.openFile",
"when": "editorTextFocus"
}
],
"menus": {
"editor/context": [
{
"group": "navigation@99",
"command": "alt-editor.openFile"
}
],
"editor/title/context": [
{
"group": "alt-editor@1",
"command": "alt-editor.openFile"
}
],
"explorer/context": [
{
"group": "navigation@99",
"command": "alt-editor.openFile"
}
]
},
"configuration": {
"type": "object",
"title": "Open in External Editor configuration",
"properties": {
"alt-editor.name": {
"type": [
"string",
null
],
"enum": [
"atom",
"emacs",
"idea14ce",
"phpstorm",
"sublime",
"vim",
"visualstudio",
"webstorm",
null
],
"default": null,
"description": "Editor to open a file. Once value is set, we try to detect a command to launch an editor."
},
"alt-editor.binary": {
"type": [
"string",
null
],
"default": null,
"description": "Command to launch an editor."
},
"alt-editor.args": {
"type": [
"string",
null
],
"default": null,
"description": "Option to specify arguments for a command. It can contain placeholders to be replaced by actual values. Supported placeholders: {filename}, {line} and {column}."
},
"alt-editor.terminal": {
"type": [
"boolean",
null
],
"default": null,
"description": "Set to `true` if the editor to be opened in the terminal."
}
}
}
},
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"release": "standard-version",
"publish": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"standard-version": "4.4.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
},
"dependencies": {
"@generalov/open-in-editor": "^2.3.0"
}
}