diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-08-23 19:29:40 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-08-24 08:55:24 -0400 |
| commit | 9ccd1aa0c7f2ac0d8982750a9ac5c9d5c1e1ea34 (patch) | |
| tree | 8d5c65e5ee7ac3cf098fbed83c66f916d12d1197 /misc | |
| parent | 118db4f7667c91b24fcc21353df7c3cd7a5830b3 (diff) | |
Add configuration for enabling pointer matching on completion
Diffstat (limited to 'misc')
| -rw-r--r-- | misc/ols.schema.json | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/misc/ols.schema.json b/misc/ols.schema.json index 8f1ffe7..2d287da 100644 --- a/misc/ols.schema.json +++ b/misc/ols.schema.json @@ -65,10 +65,20 @@ "description": "Automatically import packages that aren't in your import on completion", "default": true }, - "enable_references": { "type": "boolean" }, + "enable_references": { + "type": "boolean", + "description": "Turns on finding references for a symbol.", + "default": true + }, + "enable_completion_matching": { + "type": "boolean", + "description": "Attempt to match types and pointers when passing arguments to procedures.", + "default": true + }, "enable_fake_methods": { "type": "boolean", "description": "Turn on fake methods completion." + "default": false }, "disable_parser_errors": { "type": "boolean" }, "verbose": { |