-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
189 lines (189 loc) · 8.1 KB
/
package.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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
{
"name": "All-Autocomplete",
"displayName": "All Autocomplete",
"description": "Create autocomplete items from open files in VSCode.",
"version": "0.0.26",
"publisher": "Atishay-Jain",
"license": "MIT",
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Other"
],
"keywords": [
"autocomplete",
"all autocomplete",
"intellisense",
"intellisense from open files",
"code completion"
],
"galleryBanner": {
"color": "#5F889E",
"theme": "light"
},
"bugs": {
"url": "https://github.com/atishay/vscode-allautocomplete/issues"
},
"homepage": "https://github.com/atishay/vscode-allautocomplete",
"repository": {
"type": "git",
"url": "https://github.com/atishay/vscode-allautocomplete.git"
},
"activationEvents": [
"*"
],
"icon": "images/icon.png",
"contributes": {
"commands": [
{
"command": "AllAutocomplete.toggleCurrentFile",
"title": "Toggle Suggestions From The Current File",
"category": "All Autocomplete"
}
],
"configurationDefaults": {
"[markdown]": {
"editor.quickSuggestions": true
},
"[yaml]": {
"editor.quickSuggestions": true
},
"[plaintext]": {
"editor.quickSuggestions": true
}
},
"configuration": {
"title": "All Autocomplete",
"properties": {
"AllAutocomplete.languageWhitespace": {
"type": "object",
"description": "Language specific settings for the whitespace splitter",
"default": {
"ruby": "[^\\w\\-_\\$:\\u0080-\\uFFFF]+",
"javascript": "[^\\w_\\$\\u0080-\\uFFFF]+",
"javascriptreact": "[^\\w_\\-\\$\\@\\u0080-\\uFFFF]+",
"typescript": "[^\\w_\\-\\$\\@\\u0080-\\uFFFF]+",
"php": "[^\\w_\\$\\u0080-\\uFFFF]+",
"css": "[^\\w\\-_\\$\\u0080-\\uFFFF]+",
"scss": "[^\\w\\-_\\$\\@\\u0080-\\uFFFF]+",
"html": "[^\\w\\-_\\$\\u0080-\\uFFFF]+",
"python": "[^\\w\\-_\\u0080-\\uFFFF]+",
"elm": "[^\\w\\-_\\u0080-\\uFFFF]+",
"cpp": "[^\\w_\\u0080-\\uFFFF]+",
"csv": "[^\\w_\\u0080-\\uFFFF \\:]+"
}
},
"AllAutocomplete.languageSpecialCharacters": {
"type": "object",
"description": "Language specific special characters that can be a part of autocompletion(that can fit with all strings)",
"default": {
"css": "^[\\.#]",
"scss": "^[\\.#]",
"csv": "^[\\: ]"
}
},
"AllAutocomplete.minWordLength": {
"type": "number",
"default": 3,
"description": "All Autocomplete: Minimum word length to keep in autocomplete list."
},
"AllAutocomplete.maxLines": {
"type": "number",
"default": 9999,
"description": "All Autocomplete: Maximum number of lines to read from a file."
},
"AllAutocomplete.maxItemsInSingleList": {
"type": "number",
"default": 999,
"description": "All Autocomplete: Maximum number of items sent for autocomplete in a single API call."
},
"AllAutocomplete.whitespace": {
"type": "string",
"default": "[^\\w\\-_\\$\\u0080-\\uFFFF]+",
"description": "All Autocomplete: Regex to use for splitting whitespace"
},
"AllAutocomplete.disableNumberHandling": {
"type": "boolean",
"default": false,
"description": "Disable special handling for "
},
"AllAutocomplete.showCurrentDocument": {
"type": "boolean",
"default": true,
"description": "Show results from the current document in the autocomplete results(Disable to improve performance)."
},
"AllAutocomplete.showOpenDocuments": {
"type": "boolean",
"default": true,
"description": "Show results from the other open document in the autocomplete results(Disable to have results only from the current document if showCurrentDocument is true)."
},
"AllAutocomplete.ignoredWords": {
"type": "string",
"default": "",
"description": "Words to ignore(separated by AllAutocomplete.whitespace) from autocomplete."
},
"AllAutocomplete.updateOnlyOnSave": {
"type": "boolean",
"default": false,
"description": "Do not update the autocomplete list unless the document is saved."
},
"AllAutocomplete.excludeFiles": {
"type": "string",
"default": "**/*.+(git|rendered)",
"description": "Glob pattern for files to exclude from autocomplete search."
},
"AllAutocomplete.wordListFiles": {
"type": "array",
"default": [],
"description": "List of files to initialize the word list from. These files behave as if they are always open. Expects an absolute path. Can work with relative path if the workspace contains a single folder."
},
"AllAutocomplete.nonContributingLanguages": {
"type": "array",
"default": [],
"description": "List of languages that do not supply word lists but can consume words from All Autocomplete."
},
"AllAutocomplete.nonContributingToSelfLanguages": {
"type": "array",
"default": [],
"description": "List of languages that do not supply word lists to the files of the same language but can consume words from All Autocomplete as well as supply word lists to other files."
},
"AllAutocomplete.dontContributeToSelf": {
"type": "boolean",
"default": false,
"description": "Forces all languages to not show up words from the same language. This removes All AutoComplete for the same language files. Useful if relying on the language server and need to use all autocomplete only across languages. Equivalent to putting all languages in AllAutocomplete.nonContributingToSelfLanguages"
}
}
}
},
"main": "./dist/extension",
"browser": "./dist/extension-web",
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"test-web": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=.",
"postversion": "git push && git push --tags"
},
"dependencies": {
"diacritic": "^0.0.2",
"minimatch": "6.1.6",
"triejs": "0.1.5",
"vscode-uri": "^3.0.7"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"@types/vscode": "*",
"@vscode/test-web": "^0.0.34",
"mocha": "*",
"ts-loader": "*",
"tslint": "*",
"typescript": "*",
"webpack": "*",
"webpack-cli": "*"
}
}