Skip to content

Commit da388c4

Browse files
committed
Prepare 0.8.3 release
1 parent 157e609 commit da388c4

File tree

1 file changed

+51
-46
lines changed

1 file changed

+51
-46
lines changed

package.json

Lines changed: 51 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "autocomplete-lua",
3-
"version": "0.8.2",
3+
"version": "0.8.3",
44
"description": "Extensible autocomplete+ provider for Lua",
55
"repository": {
66
"type": "git",
@@ -11,51 +11,56 @@
1111
},
1212
"main": "lib/index.js",
1313
"configSchema": {
14-
"luaVersion": {
15-
"order": 0,
16-
"type": "string",
17-
"default": "5.2",
18-
"enum": ["5.1", "5.2", "5.3", "luajit-2.0"],
19-
"title": "Default Lua version",
20-
"description": "Can be overriden in .luacompleterc or by plugins"
21-
},
22-
"useSnippets": {
23-
"order": 1,
24-
"type": "boolean",
25-
"default": true,
26-
"title": "Suggest snippets",
27-
"description": "Complete functions with snippets of their arguments"
28-
},
29-
"suggestUsedMembers": {
30-
"order": 2,
31-
"type": "boolean",
32-
"default": true,
33-
"title": "Suggest used table members",
34-
"description": "Suggest table members that you've used in your code as opposed to just those you have explicitly set or defined"
35-
},
36-
"minCharsPrefix": {
37-
"order": 3,
38-
"type": "integer",
39-
"default": 2,
40-
"minimum": 1,
41-
"title": "Min chars to start completion",
42-
"description": "The minimum number of typed characters required to start a completion"
43-
},
44-
"excludeLowerPriority": {
45-
"order": 4,
46-
"type": "boolean",
47-
"default": false,
48-
"title": "Override lower priority providers",
49-
"description": "Disable Atom's default keyword-based autocompletion provider and other lower priority providers"
50-
},
51-
"inclusionPriority": {
52-
"order": 5,
53-
"type": "integer",
54-
"default": 1,
55-
"minimum": 0,
56-
"title": "Provider inclusion priority",
57-
"description": "Priority relative to other autocomplete providers"
58-
}
14+
"luaVersion": {
15+
"order": 0,
16+
"type": "string",
17+
"default": "5.2",
18+
"enum": [
19+
"5.1",
20+
"5.2",
21+
"5.3",
22+
"luajit-2.0"
23+
],
24+
"title": "Default Lua version",
25+
"description": "Can be overriden in .luacompleterc or by plugins"
26+
},
27+
"useSnippets": {
28+
"order": 1,
29+
"type": "boolean",
30+
"default": true,
31+
"title": "Suggest snippets",
32+
"description": "Complete functions with snippets of their arguments"
33+
},
34+
"suggestUsedMembers": {
35+
"order": 2,
36+
"type": "boolean",
37+
"default": true,
38+
"title": "Suggest used table members",
39+
"description": "Suggest table members that you've used in your code as opposed to just those you have explicitly set or defined"
40+
},
41+
"minCharsPrefix": {
42+
"order": 3,
43+
"type": "integer",
44+
"default": 2,
45+
"minimum": 1,
46+
"title": "Min chars to start completion",
47+
"description": "The minimum number of typed characters required to start a completion"
48+
},
49+
"excludeLowerPriority": {
50+
"order": 4,
51+
"type": "boolean",
52+
"default": false,
53+
"title": "Override lower priority providers",
54+
"description": "Disable Atom's default keyword-based autocompletion provider and other lower priority providers"
55+
},
56+
"inclusionPriority": {
57+
"order": 5,
58+
"type": "integer",
59+
"default": 1,
60+
"minimum": 0,
61+
"title": "Provider inclusion priority",
62+
"description": "Priority relative to other autocomplete providers"
63+
}
5964
},
6065
"providedServices": {
6166
"autocomplete.provider": {

0 commit comments

Comments
 (0)