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 /src/common | |
| 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 'src/common')
| -rw-r--r-- | src/common/config.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/config.odin b/src/common/config.odin index 5b2923c..c0ddb0f 100644 --- a/src/common/config.odin +++ b/src/common/config.odin @@ -21,9 +21,9 @@ Config :: struct { enable_hover: bool, enable_document_symbols: bool, enable_semantic_tokens: bool, - enable_inlay_hints: bool, enable_inlay_hints_params: bool, enable_inlay_hints_default_params: bool, + enable_inlay_hints_implicit_return: bool, enable_procedure_context: bool, enable_snippets: bool, enable_references: bool, |