From d301a5201ab25d7abac02b5e2f431a21392f03e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Ch=C3=A1varri?= Date: Mon, 1 Apr 2024 22:03:51 +0200 Subject: [PATCH] config.md: update to include inlay hints (#1235) --- 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 } } ```