diff options
| author | Bradley Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-27 13:54:34 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-27 13:54:34 -0400 |
| commit | 4a2a71e12d61be1cd8ca486d96de8dd47dd49df2 (patch) | |
| tree | 68d0da9ad2a1b5e167497ac8264d7e8c0294ea5d /misc/ols.schema.json | |
| parent | d9e6c6aa6988e880448c1418c4a904c66f157fc3 (diff) | |
| parent | 2d585d7ec2c1e47b1f48f6be7ae2e7da37aeafcc (diff) | |
Merge pull request #1060 from thetarnav/inlay_hints_implicit_return_values
Add inlay hints for implicit return values (closes #1058)
Diffstat (limited to 'misc/ols.schema.json')
| -rw-r--r-- | misc/ols.schema.json | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/misc/ols.schema.json b/misc/ols.schema.json index 3bd2489..898914e 100644 --- a/misc/ols.schema.json +++ b/misc/ols.schema.json @@ -41,19 +41,21 @@ "type": "boolean", "description": "Turns on builtin snippets" }, - "enable_inlay_hints": { - "type": "boolean", - "description": "Turn on inlay hints for editors that support it." - }, + "enable_inlay_hints_params": { "type": "boolean", "description": "Turn on inlay hints for (non-default) parameters.", - "default": true + "default": false }, "enable_inlay_hints_default_params": { "type": "boolean", "description": "Turn on inlay hints for default parameters.", - "default": true + "default": false + }, + "enable_inlay_hints_implicit_return": { + "type": "boolean", + "description": "Turn on inlay hints for implicit return values.", + "default": false }, "enable_procedure_snippet": { "type": "boolean", |