diff options
| author | Damian Tarnawski <gthetarnav@gmail.com> | 2023-06-11 23:01:38 +0200 |
|---|---|---|
| committer | Damian Tarnawski <gthetarnav@gmail.com> | 2023-06-11 23:01:38 +0200 |
| commit | 2e312fd910faac0381a948f12c1f031be04d9a29 (patch) | |
| tree | ca17cc88d905d109db841d197dfe0e1a626b4d93 /misc | |
| parent | 31b0c806a920afc0157a521e999d7e2ac64cf4a4 (diff) | |
Correct fields on ols schema
Diffstat (limited to 'misc')
| -rw-r--r-- | misc/ols.schema.json | 39 |
1 files changed, 10 insertions, 29 deletions
diff --git a/misc/ols.schema.json b/misc/ols.schema.json index 802f9e3..453aab1 100644 --- a/misc/ols.schema.json +++ b/misc/ols.schema.json @@ -2,16 +2,6 @@ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { - "workspace_folders": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { "type": "string" }, - "uri": { "type": "string" } - } - } - }, "collections": { "type": "array", "items": { @@ -22,40 +12,31 @@ } } }, - "completion_support_md": { "type": "boolean" }, - "hover_support_md": { "type": "boolean" }, - "signature_offset_support": { "type": "boolean" }, - "running": { "type": "boolean" }, - "verbose": { - "type": "boolean", - "description": "Logs warnings instead of just errors." - }, - "enable_format": { "type": "boolean" }, - "enable_hover": { + "thread_pool_count": { "type": "integer" }, + "enable_semantic_tokens": { "type": "boolean", - "description": "Enables hover feature" + "description": "Turns on syntax highlighting." }, "enable_document_symbols": { "type": "boolean", "description": "Turns on outline of all your global declarations in your document." }, - "enable_semantic_tokens": { + "enable_hover": { "type": "boolean", - "description": "Turns on syntax highlighting." + "description": "Enables hover feature" }, - "enable_inlay_hints": { "type": "boolean" }, "enable_procedure_context": { "type": "boolean" }, "enable_snippets": { "type": "boolean", "description": "Turns on builtin snippets" }, + "enable_inlay_hints": { "type": "boolean" }, "enable_references": { "type": "boolean" }, - "enable_rename": { "type": "boolean" }, - "enable_label_details": { "type": "boolean" }, - "enable_std_references": { "type": "boolean" }, - "enable_import_fixer": { "type": "boolean" }, "disable_parser_errors": { "type": "boolean" }, - "thread_count": { "type": "integer" }, + "verbose": { + "type": "boolean", + "description": "Logs warnings instead of just errors." + }, "file_log": { "type": "boolean" }, "odin_command": { "type": "string", |