diff options
| author | Damian Tarnawski <gthetarnav@gmail.com> | 2025-09-26 20:49:05 +0200 |
|---|---|---|
| committer | Damian Tarnawski <gthetarnav@gmail.com> | 2025-09-26 20:49:05 +0200 |
| commit | 5102e42c274a8e43e2bc49fe47b7aafbdf0d23f9 (patch) | |
| tree | 94b3419d1c5f7b1232ee5f1d57680683306f38ea /misc | |
| parent | be068e5dad39f502c6ed7cf6b3e64a46c9540e0d (diff) | |
Add inlay hints for implicit return values (closes #1058)
Diffstat (limited to 'misc')
| -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", |