-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 4.63 KB
/
package.json
File metadata and controls
148 lines (148 loc) · 4.63 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
143
144
145
146
147
148
{
"name": "language-lua-plus",
"version": "1.7.1",
"description": "Lua grammar and snippets for Atom.",
"main": "lib/main",
"keywords": [
"tree-sitter",
"language",
"lua",
"grammar",
"snippets"
],
"repository": "https://github.com/Azganoth/language-lua-plus",
"author": "Ademir J. Ferreira Junior <ademirj.ferreirajunior@gmail.com> (https://github.com/Azganoth)",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"tree-sitter-lua": "1.6.1"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"4.0.0": "getProvider"
}
}
},
"configSchema": {
"suggestion_description": {
"title": "Show description",
"description": "Shows a description of the suggestion.",
"type": "boolean",
"default": true,
"order": 1
},
"suggestion_help": {
"title": "Show help link",
"description": "Shows a link which leads to a help page from the oficial lua website. (Requires <em>Show description</em> to work.)",
"type": "boolean",
"default": true,
"order": 2
},
"suggestions_lua": {
"title": "Suggestions: Lua Keywords and Constructs",
"type": "object",
"properties": {
"keyword": {
"title": "Keywords",
"description": "Enables <strong>keywords</strong> to be shown as suggestions.",
"type": "boolean",
"default": true,
"order": 1
},
"control": {
"title": "Control Structures",
"description": "Enables <strong>control structures</strong> to be shown as suggestions.",
"type": "boolean",
"default": true,
"order": 2
},
"function": {
"title": "Function Statements",
"description": "Enables <strong>function statements</strong> to be shown as suggestions.",
"type": "boolean",
"default": true,
"order": 3
}
}
},
"suggestions_lua_libraries": {
"title": "Suggestions: Standard Lua Libraries",
"type": "object",
"properties": {
"basic": {
"title": "Basic Functions",
"description": "Enables <strong>basic functions</strong> to be shown as suggestions, e.g, assert, print, tostring.",
"type": "boolean",
"default": false,
"order": 1
},
"coroutine": {
"title": "Coroutines",
"description": "Enables <strong>coroutines</strong> to be shown as suggestions.",
"type": "boolean",
"default": false,
"order": 2
},
"package": {
"title": "Modules",
"description": "Enables <strong>modules functions</strong> to be shown as suggestions.",
"type": "boolean",
"default": false,
"order": 3
},
"string": {
"title": "String Manipulation",
"description": "Enables <strong>string manipulation functions</strong> to be shown as suggestions.",
"type": "boolean",
"default": false,
"order": 4
},
"utf8": {
"title": "UTF-8 Support",
"description": "Enables <strong>utf-8 support functions</strong> to be shown as suggestions.",
"type": "boolean",
"default": false,
"order": 5
},
"table": {
"title": "Table Manipulation",
"description": "Enables <strong>table manipulation functions</strong> to be shown as suggestions.",
"type": "boolean",
"default": false,
"order": 6
},
"math": {
"title": "Mathematical Functions",
"description": "Enables <strong>mathematical manipulation functions</strong> to be shown as suggestions.",
"type": "boolean",
"default": false,
"order": 7
},
"io": {
"title": "Input and Output Facilities",
"description": "Enables <strong>input and output facilities</strong> to be shown as suggestions.",
"type": "boolean",
"default": false,
"order": 8
},
"os": {
"title": "Operating System Facilities",
"description": "Enables <strong>operating system facilities</strong> to be shown as suggestions.",
"type": "boolean",
"default": false,
"order": 9
},
"debug": {
"title": "Debug Interface",
"description": "Enables <strong>debug interface functions</strong> to be shown as suggestions.",
"type": "boolean",
"default": false,
"order": 10
}
}
}
}
}