-
Notifications
You must be signed in to change notification settings - Fork 5
/
extension.json
44 lines (44 loc) · 1.17 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
{
"identifier": "screenisland.novacopilotlsp",
"name": "Copilot for Nova",
"organization": "Screen Island",
"description": "Nova plugin for GitHub Copilot.",
"version": "1.0.2",
"categories": [
"languages"
],
"bugs": "https://github.com/gobijan/nova-copilot-lsp/issues",
"main": "main.js",
"entitlements": {
"process": true,
"filesystem": "readonly",
"clipboard": true
},
"commands": {
"extensions": [
{
"title": "Sign In",
"command": "screenisland.novacopilotlsp.signIn"
},
{
"title": "Sign Out",
"command": "screenisland.novacopilotlsp.signOut"
}
],
"editor": [
{
"title": "Apply Completion",
"command": "screenisland.novacopilotlsp.applyCompletion",
"shortcut": "cmd-opt-'"
}
]
},
"config": [
{
"key": "screenisland.novacopilotlsp.node-path",
"title": "node path",
"type": "path",
"placeholder": "/opt/homebrew/bin/node"
}
]
}