aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorBrad Lewis <22850972+BradLewis@users.noreply.github.com>2026-01-27 14:57:34 +1100
committerBrad Lewis <22850972+BradLewis@users.noreply.github.com>2026-01-27 14:57:45 +1100
commit35fd3cef3b94c0495508b229db9ff6da647a6c46 (patch)
tree1951cde48c36cc6b0f6f098241ee3bfd534d697f /src/common
parent7349330c3ff8dba777ff01dfcf284588c3b01471 (diff)
Add option to put the signature help for comp lits in the docs to improve rendering with certain editors
Diffstat (limited to 'src/common')
-rw-r--r--src/common/config.odin77
1 files changed, 39 insertions, 38 deletions
diff --git a/src/common/config.odin b/src/common/config.odin
index 6890685..441e8a9 100644
--- a/src/common/config.odin
+++ b/src/common/config.odin
@@ -10,44 +10,45 @@ ConfigProfile :: struct {
}
Config :: struct {
- workspace_folders: [dynamic]WorkspaceFolder,
- completion_support_md: bool,
- hover_support_md: bool,
- signature_offset_support: bool,
- collections: map[string]string,
- running: bool,
- verbose: bool,
- enable_format: bool,
- enable_hover: bool,
- enable_document_symbols: bool,
- enable_semantic_tokens: bool,
- enable_unused_imports_reporting: 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,
- enable_document_highlights: bool,
- enable_label_details: bool,
- enable_std_references: bool,
- enable_import_fixer: bool,
- enable_fake_method: bool,
- enable_procedure_snippet: bool,
- enable_checker_only_saved: bool,
- 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,
- odin_command: string,
- odin_root_override: string,
- checker_args: string,
- checker_targets: []string,
- client_name: string,
- profile: ConfigProfile,
+ workspace_folders: [dynamic]WorkspaceFolder,
+ completion_support_md: bool,
+ hover_support_md: bool,
+ signature_offset_support: bool,
+ collections: map[string]string,
+ running: bool,
+ verbose: bool,
+ enable_format: bool,
+ enable_hover: bool,
+ enable_document_symbols: bool,
+ enable_semantic_tokens: bool,
+ enable_unused_imports_reporting: 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,
+ enable_document_highlights: bool,
+ enable_label_details: bool,
+ enable_std_references: bool,
+ enable_import_fixer: bool,
+ enable_fake_method: bool,
+ enable_procedure_snippet: bool,
+ enable_checker_only_saved: bool,
+ enable_auto_import: bool,
+ enable_completion_matching: bool,
+ enable_document_links: bool,
+ enable_comp_lit_signature_help: bool,
+ enable_comp_lit_signature_help_use_docs: bool,
+ disable_parser_errors: bool,
+ thread_count: int,
+ file_log: bool,
+ odin_command: string,
+ odin_root_override: string,
+ checker_args: string,
+ checker_targets: []string,
+ client_name: string,
+ profile: ConfigProfile,
}
config: Config