From 3f609613a5f737c8cd745929a3e12c7f8bd6d063 Mon Sep 17 00:00:00 2001 From: Javier Chavarri Date: Mon, 18 Mar 2024 18:38:28 +0000 Subject: [PATCH] config.md: update to include inlay hints --- ocaml-lsp-server/docs/ocamllsp/config.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ocaml-lsp-server/docs/ocamllsp/config.md b/ocaml-lsp-server/docs/ocamllsp/config.md index 1fa4398a1..900d9ad86 100644 --- a/ocaml-lsp-server/docs/ocamllsp/config.md +++ b/ocaml-lsp-server/docs/ocamllsp/config.md @@ -1,6 +1,6 @@ # Configuration -The ocamllsp support the folowing configurations. +The ocamllsp support the following configurations. These configurations are sent through the [`didChangeConfiguration`](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#workspace_didChangeConfiguration) @@ -28,5 +28,12 @@ interface config { * @since 1.18 */ duneDiagnostics: { enable : boolean } + + /** + * Enable/Disable Inlay Hints + * @default false + * @since 1.18 + */ + inlayHints: { enable : boolean } } ```