-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
51 lines (48 loc) · 1.3 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"identifier": "com.caleyjack.Kaleidoscope",
"name": "Kaleidoscope Diff",
"organization": "Caley Jack Steward",
"description": "Compare any two files across projects using Kaleidoscope!",
"version": "1.1",
"categories": ["commands"],
"repository": "https://github.com/robojack/KaleidoscopeDiff.novaextension",
"bugs": "https://github.com/robojack/KaleidoscopeDiff.novaextension/issues",
"license": "MIT",
"main": "main.js",
"entitlements": {
"filesystem": "readwrite",
"process": true
},
"commands": {
"extensions": [
{
"title": "Set File A",
"command": "com.caleyjack.Kaleidoscope.setFileA",
"shortcut": "ctrl-opt-←"
},
{
"title": "Set File B",
"command": "com.caleyjack.Kaleidoscope.setFileB",
"shortcut": "ctrl-opt-→"
},
{
"title": "Compare Files",
"command": "com.caleyjack.Kaleidoscope.compareFiles",
"shortcut": "ctrl-opt-↑"
},
{
"title": "Clear All Files",
"command": "com.caleyjack.Kaleidoscope.clearAllFiles",
"shortcut": "ctrl-opt-↓"
}
]
},
"config": [
{
"key": "com.caleyjack.Kaleidoscope.toolcommand",
"title": "Command",
"type": "string",
"default": "/usr/local/bin/ksdiff"
}
]
}