diff options
| author | Damian Tarnawski <gthetarnav@gmail.com> | 2024-01-05 21:52:04 +0100 |
|---|---|---|
| committer | Damian Tarnawski <gthetarnav@gmail.com> | 2024-01-05 21:52:04 +0100 |
| commit | 75449d36ad6fb6901dd5658409ca5a3a56eab45d (patch) | |
| tree | 79ad7ee84e3561f88d4309b7d15b336eccbfe576 | |
| parent | 692b1b97a9cd48afe4a62e323c345f540472faf3 (diff) | |
Add enable_fake_methods field to the schema.
| -rw-r--r-- | misc/ols.schema.json | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/misc/ols.schema.json b/misc/ols.schema.json index 453aab1..bc01704 100644 --- a/misc/ols.schema.json +++ b/misc/ols.schema.json @@ -30,8 +30,15 @@ "type": "boolean", "description": "Turns on builtin snippets" }, - "enable_inlay_hints": { "type": "boolean" }, + "enable_inlay_hints": { + "type": "boolean", + "description": "Turn on inlay hints for editors that support it." + }, "enable_references": { "type": "boolean" }, + "enable_fake_methods": { + "type": "boolean", + "description": "Turn on fake methods completion." + }, "disable_parser_errors": { "type": "boolean" }, "verbose": { "type": "boolean", |