-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
34 lines (30 loc) · 865 Bytes
/
extension.json
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
{
"identifier": "com.gwhobbs.OpenInFork",
"name": "Open in Fork",
"organization": "Grant Hobbs",
"description": "Quickly view file history in the Fork Git client.",
"version": "1.0.2",
"repository": "https://github.com/gwhobbs/OpenInFork.novaextension",
"bugs": "https://github.com/gwhobbs/OpenInFork.novaextension/issues",
"license": "MIT",
"categories": ["commands"],
"main": "main.js",
"activationEvents": [
"onLanguage:javascript"
],
"entitlements": {
"process": true
},
"commands": {
"editor": [
{
"title": "Open Repository",
"command": "open-in-fork.openRepository"
},
{
"title": "Show File History",
"command": "open-in-fork.fileHistory"
}
]
}
}