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 /src/common | |
| parent | be068e5dad39f502c6ed7cf6b3e64a46c9540e0d (diff) | |
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, |