-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
59 lines (52 loc) · 1.7 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
52
53
54
55
56
57
58
59
{
"identifier": "novov.searchdocs",
"name": "Search Docs",
"organization": "novov",
"description": "Find documentation for a selected term.",
"version": "0.3",
"categories": ["commands"],
"bugs": "https://github.com/mirnovov/searchdocs/issues",
"repository": "https://github.com/mirnovov/searchdocs",
"license": "MIT",
"main": "main.js",
"entitlements": {
},
"commands": {
"editor": [
{
"title": "Search Docs...",
"command": "novov.searchdocs.search",
"when": "editorHasSelection",
"shortcut": "cmd-@",
"filters": {
"syntaxes": ["javascript", "html", "css", "sass", "scss",
"less", "xml", "vue", "typescript", "python",
"php", "ruby", "perl", "shell"]
}
}
]
},
"config": [
{
"title": "Syntax sources",
"description": "Choose what documentation to use for languages.",
"type": "section",
"children": [
{
"key": "novov.searchdocs.python",
"title": "Python",
"type": "enum",
"values": ["3.x", "2.x"],
"default": "3.x"
},
{
"key": "novov.searchdocs.sql",
"title": "SQL",
"type": "enum",
"values": ["MariaDB", "Microsoft SQL", "MySQL"],
"default": "MariaDB"
}
]
}
]
}