Skip to content

Commit 3d8241f

Browse files
committed
Add missing config options
1 parent 5ab7fac commit 3d8241f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

package.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,18 @@
160160
"default": "keep-up-to-date",
161161
"markdownDescription": "Determine what to do when a new version of the language server is available."
162162
},
163+
"haskell.checkProject": {
164+
"scope": "resource",
165+
"type": "boolean",
166+
"default": true,
167+
"description": "Whether to typecheck the entire project on load. As it is activated by default could drive to bad perfomance in large projects."
168+
},
169+
"haskell.maxCompletions": {
170+
"scope": "resource",
171+
"default": 40,
172+
"type": "integer",
173+
"description": "Maximum number of completions sent to the editor."
174+
},
163175
"haskell.plugin.importLens.codeActionsOn": {
164176
"scope": "resource",
165177
"type": "boolean",
@@ -322,6 +334,12 @@
322334
"Only display type lenses of exported global bindings",
323335
"Follows error messages produced by GHC about missing signatures"
324336
]
337+
},
338+
"haskell.plugin.refineImports.globalOn": {
339+
"scope": "resource",
340+
"type": "boolean",
341+
"default": true,
342+
"description": "Enables refine imports plugin"
325343
}
326344
}
327345
},

0 commit comments

Comments
 (0)