@effect/language-service 0.41.1 → 0.42.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/effect-lsp-patch-utils.js +2 -0
- package/effect-lsp-patch-utils.js.map +1 -1
- package/index.js +18 -5
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/transform.js +2 -0
- package/transform.js.map +1 -1
package/README.md
CHANGED
|
@@ -111,6 +111,7 @@ Few options can be provided alongside the initialization of the Language Service
|
|
|
111
111
|
},
|
|
112
112
|
"quickinfo": true, // controls Effect quickinfo (default: true)
|
|
113
113
|
"quickinfoEffectParameters": "whenTruncated", // (default: "whenTruncated") controls when to display effect type parameters always,never,whenTruncated
|
|
114
|
+
"quickinfoMaximumLength": -1, // controls how long can be the types in the quickinfo hover (helps with very long type to improve perfs, defaults to -1 for no truncation, can be any number eg. 1000 and TS will try to fit as much as possible in that budget, higher number means more info.)
|
|
114
115
|
"completions": true, // controls Effect completions (default: true)
|
|
115
116
|
"goto": true, // controls Effect goto references (default: true)
|
|
116
117
|
"inlays": true, // controls Effect provided inlayHints (default: true)
|
|
@@ -1174,6 +1174,7 @@ var defaults = {
|
|
|
1174
1174
|
diagnosticSeverity: {},
|
|
1175
1175
|
quickinfo: true,
|
|
1176
1176
|
quickinfoEffectParameters: "whentruncated",
|
|
1177
|
+
quickinfoMaximumLength: -1,
|
|
1177
1178
|
completions: true,
|
|
1178
1179
|
goto: true,
|
|
1179
1180
|
inlays: true,
|
|
@@ -1192,6 +1193,7 @@ function parse(config) {
|
|
|
1192
1193
|
diagnosticSeverity: isObject(config) && hasProperty(config, "diagnosticSeverity") && isRecord(config.diagnosticSeverity) ? parseDiagnosticSeverity(config.diagnosticSeverity) : defaults.diagnosticSeverity,
|
|
1193
1194
|
quickinfo: isObject(config) && hasProperty(config, "quickinfo") && isBoolean(config.quickinfo) ? config.quickinfo : defaults.quickinfo,
|
|
1194
1195
|
quickinfoEffectParameters: isObject(config) && hasProperty(config, "quickinfoEffectParameters") && isString(config.quickinfoEffectParameters) && ["always", "never", "whentruncated"].includes(config.quickinfoEffectParameters.toLowerCase()) ? config.quickinfoEffectParameters.toLowerCase() : defaults.quickinfoEffectParameters,
|
|
1196
|
+
quickinfoMaximumLength: isObject(config) && hasProperty(config, "quickinfoMaximumLength") && isNumber(config.quickinfoMaximumLength) ? config.quickinfoMaximumLength : defaults.quickinfoMaximumLength,
|
|
1195
1197
|
completions: isObject(config) && hasProperty(config, "completions") && isBoolean(config.completions) ? config.completions : defaults.completions,
|
|
1196
1198
|
goto: isObject(config) && hasProperty(config, "goto") && isBoolean(config.goto) ? config.goto : defaults.goto,
|
|
1197
1199
|
inlays: isObject(config) && hasProperty(config, "inlays") && isBoolean(config.inlays) ? config.inlays : defaults.inlays,
|