diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2024-04-03 14:56:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-03 14:56:59 +0200 |
| commit | afed728e5896cc37568a2c9099cb162d79392f08 (patch) | |
| tree | 22aca17b4935a7c24938f00debc3863f6dbce2d6 | |
| parent | b398c8c817c2b28888e86ebdae84b8deb00a49e0 (diff) | |
| parent | be940343cd250122682d16bdf94004557a3590ca (diff) | |
Merge pull request #335 from thetarnav/enable_procedure_snippet
Add enable_procedure_snippet to ols.json schema
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | misc/ols.schema.json | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -76,7 +76,7 @@ Options: `enable_inlay_hints`: Turn on inlay hints for editors that support it. -`enable_procedure_snippet`: Use snippets when completing procedures. +`enable_procedure_snippet`: Use snippets when completing procedures—adds parenthesis after the name. _(Enabled by default)_ `odin_command`: Allows you to specify your Odin location, instead of just relying on the environment path. diff --git a/misc/ols.schema.json b/misc/ols.schema.json index a374681..3fbc0d2 100644 --- a/misc/ols.schema.json +++ b/misc/ols.schema.json @@ -39,6 +39,11 @@ "type": "boolean", "description": "Turn on inlay hints for editors that support it." }, + "enable_procedure_snippet": { + "type": "boolean", + "description": "Use snippets when completing procedures—adds parenthesis after the name.", + "default": true + }, "enable_references": { "type": "boolean" }, "enable_fake_methods": { "type": "boolean", |