diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2024-07-11 18:43:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-11 18:43:05 +0200 |
| commit | c09d18ef2fc482df036afbcea49f93a22232666b (patch) | |
| tree | 52416ffe4c3589ecb8dd5670b8e3123296042e35 /src/common | |
| parent | 0d4ee28028fb01dfbc5496b5d7056a6c0ac3eeaf (diff) | |
| parent | fb140bd700f0ba5b9762250742e333abdb1de382 (diff) | |
Merge pull request #425 from laytan/add-default-args-to-inlay-hints
add default arguments to inlay hints
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/config.odin | 62 |
1 files changed, 32 insertions, 30 deletions
diff --git a/src/common/config.odin b/src/common/config.odin index 6ca8bc9..27bc1ac 100644 --- a/src/common/config.odin +++ b/src/common/config.odin @@ -7,36 +7,38 @@ 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_inlay_hints: bool, - enable_procedure_context: bool, - enable_snippets: bool, - enable_references: bool, - enable_rename: 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, - disable_parser_errors: bool, - thread_count: int, - file_log: bool, - odin_command: 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_inlay_hints: bool, + enable_inlay_hints_params: bool, + enable_inlay_hints_default_params: bool, + enable_procedure_context: bool, + enable_snippets: bool, + enable_references: bool, + enable_rename: 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, + disable_parser_errors: bool, + thread_count: int, + file_log: bool, + odin_command: string, + checker_args: string, + checker_targets: []string, + client_name: string, + profile: ConfigProfile, } config: Config |