diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-12-11 07:25:13 -0500 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-12-11 07:25:13 -0500 |
| commit | a13716d68e7cde284a762c7ccbbcc9b864db3ada (patch) | |
| tree | 2ed804fb1c8a52e86462a73670fe016758f93093 /src/common | |
| parent | 465e4b4f1472ee4a2786321409d9f58eb79259e8 (diff) | |
Add optional feature for displaying signature help for comp literals
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/config.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/config.odin b/src/common/config.odin index 4aaefac..6890685 100644 --- a/src/common/config.odin +++ b/src/common/config.odin @@ -38,6 +38,7 @@ Config :: struct { enable_auto_import: bool, enable_completion_matching: bool, enable_document_links: bool, + enable_comp_lit_signature_help: bool, disable_parser_errors: bool, thread_count: int, file_log: bool, |