83
83
},
84
84
"haskell.completionSnippetsOn" : {
85
85
"title" : " Completion Snippets" ,
86
+ "markdownDeprecationMessage" : " **Deprecated**: Please use `#haskell.plugin.ghcide-completions.config.snippetsOn#` instead." ,
86
87
"scope" : " resource" ,
87
88
"type" : " boolean" ,
88
89
"default" : true ,
218
219
"default" : true ,
219
220
"description" : " Enables wingman (tactic) plugin"
220
221
},
222
+ "haskell.plugin.tactic.config.features" : {
223
+ "scope" : " resource" ,
224
+ "type" : " string" ,
225
+ "default" : true ,
226
+ "markdownDescription" : " Features set used by wingman (tactic) plugin"
227
+ },
228
+ "haskell.plugin.tactics.config.hole_severity" : {
229
+ "enumDescriptions" : [
230
+ " error" ,
231
+ " warning" ,
232
+ " info" ,
233
+ " hint" ,
234
+ " none"
235
+ ],
236
+ "scope" : " resource" ,
237
+ "description" : " The severity to use when showing hole diagnostics." ,
238
+ "enum" : [
239
+ 1 ,
240
+ 2 ,
241
+ 3 ,
242
+ 4 ,
243
+ null
244
+ ],
245
+ "default" : null ,
246
+ "type" : " string"
247
+ },
221
248
"haskell.plugin.tactic.config.max_use_ctor_actions" : {
222
249
"title" : " Max number of constructors" ,
223
250
"scope" : " resource" ,
224
251
"type" : " integer" ,
225
252
"default" : true ,
226
253
"markdownDescription" : " Maximum number of `Use constructor <x>` code actions that can appear"
227
254
},
228
- "haskell.plugin.tactic.config.features" : {
255
+ "haskell.plugin.tactics.config.timeout_duration" : {
256
+ "markdownDescription" : " The timeout for Wingman actions, in seconds" ,
229
257
"scope" : " resource" ,
230
- "type" : " string" ,
231
- "default" : true ,
232
- "markdownDescription" : " Features set used by wingman (tactic) plugin"
258
+ "default" : 2 ,
259
+ "type" : " integer"
233
260
},
234
261
"haskell.plugin.pragmas.codeActionsOn" : {
235
262
"scope" : " resource" ,
243
270
"default" : true ,
244
271
"description" : " Enables pragmas completions"
245
272
},
273
+ "haskell.plugin.ghcide-completions.config.autoExtendOn" : {
274
+ "markdownDescription" : " Extends the import list automatically when completing a out-of-scope identifier" ,
275
+ "scope" : " resource" ,
276
+ "default" : true ,
277
+ "type" : " boolean"
278
+ },
279
+ "haskell.plugin.ghcide-completions.config.snippetsOn" : {
280
+ "markdownDescription" : " Inserts snippets when using code completions" ,
281
+ "scope" : " resource" ,
282
+ "default" : true ,
283
+ "type" : " boolean"
284
+ },
246
285
"haskell.plugin.ghcide-type-lenses.globalOn" : {
247
286
"scope" : " resource" ,
248
287
"type" : " boolean" ,
326
365
"vscode-languageclient" : " 6.1.3" ,
327
366
"yauzl" : " ^2.10.0"
328
367
}
329
- }
368
+ }
0 commit comments