diff --git a/jsonrpc/_doc-dir/CHANGES.md b/jsonrpc/_doc-dir/CHANGES.md index efb704fe..2534ba12 100644 --- a/jsonrpc/_doc-dir/CHANGES.md +++ b/jsonrpc/_doc-dir/CHANGES.md @@ -1,3 +1,17 @@ +# 1.22.0 + +## Features + +- Enable experimental project-wide renaming of identifiers (#1431) + +# 1.21.0 + +## Features + +- Add a new server option `standardHover`, that can be used by clients to + disable the default hover provider. When `standardHover = false` + `textDocument/hover` requests always returns with empty result. (#1416) + # 1.20.1 ## Fixes @@ -14,6 +28,7 @@ [`ocamllsp/typeSearch`](/ocaml-lsp-server/docs/ocamllsp/typeSearch-spec.md) request (#1369) - Make MerlinJump code action configurable (#1376) +- Add support for OCaml 5.3 (#1386) - Add custom [`ocamllsp/jump`](/ocaml-lsp-server/docs/ocamllsp/merlinJump-spec.md) request (#1374) diff --git a/jsonrpc/_doc-dir/README.md b/jsonrpc/_doc-dir/README.md index 84359648..d653aa8c 100644 --- a/jsonrpc/_doc-dir/README.md +++ b/jsonrpc/_doc-dir/README.md @@ -182,7 +182,7 @@ Semantic highlighting support is enabled by default. > since OCaml-LSP 1.14.0 OCaml-LSP implements experimental semantic highlighting support (also known as -semantic tokens support). The support can be activated by passing an evironment +semantic tokens support). The support can be activated by passing an environment variable to OCaml-LSP: - To enable non-incremental (expectedly slower but more stable) version, pass @@ -245,7 +245,7 @@ type t = A | B of string option let f (v : t) = match v with | A -> _ | B (None) | B (Some _) -> _ ``` -Importantly, note the undescores in place of expressions in each branch of the +Importantly, note the underscores in place of expressions in each branch of the pattern match above. The underscores that occur in place of expressions are called "typed holes" - a concept explained below. diff --git a/lsp/_doc-dir/CHANGES.md b/lsp/_doc-dir/CHANGES.md index efb704fe..2534ba12 100644 --- a/lsp/_doc-dir/CHANGES.md +++ b/lsp/_doc-dir/CHANGES.md @@ -1,3 +1,17 @@ +# 1.22.0 + +## Features + +- Enable experimental project-wide renaming of identifiers (#1431) + +# 1.21.0 + +## Features + +- Add a new server option `standardHover`, that can be used by clients to + disable the default hover provider. When `standardHover = false` + `textDocument/hover` requests always returns with empty result. (#1416) + # 1.20.1 ## Fixes @@ -14,6 +28,7 @@ [`ocamllsp/typeSearch`](/ocaml-lsp-server/docs/ocamllsp/typeSearch-spec.md) request (#1369) - Make MerlinJump code action configurable (#1376) +- Add support for OCaml 5.3 (#1386) - Add custom [`ocamllsp/jump`](/ocaml-lsp-server/docs/ocamllsp/merlinJump-spec.md) request (#1374) diff --git a/lsp/_doc-dir/README.md b/lsp/_doc-dir/README.md index 84359648..d653aa8c 100644 --- a/lsp/_doc-dir/README.md +++ b/lsp/_doc-dir/README.md @@ -182,7 +182,7 @@ Semantic highlighting support is enabled by default. > since OCaml-LSP 1.14.0 OCaml-LSP implements experimental semantic highlighting support (also known as -semantic tokens support). The support can be activated by passing an evironment +semantic tokens support). The support can be activated by passing an environment variable to OCaml-LSP: - To enable non-incremental (expectedly slower but more stable) version, pass @@ -245,7 +245,7 @@ type t = A | B of string option let f (v : t) = match v with | A -> _ | B (None) | B (Some _) -> _ ``` -Importantly, note the undescores in place of expressions in each branch of the +Importantly, note the underscores in place of expressions in each branch of the pattern match above. The underscores that occur in place of expressions are called "typed holes" - a concept explained below. diff --git a/trace/Trace/index.html b/trace/Trace/index.html index 6631bbbe..f5339301 100644 --- a/trace/Trace/index.html +++ b/trace/Trace/index.html @@ -54,4 +54,4 @@ ?data:(unit -> (string * user_data) list) -> string -> float -> - unit
Emit a counter of type float. See counter_int for more details.
type collector = (module Collector.S)An event collector.
See Collector for more details.
val setup_collector : collector -> unitsetup_collector c installs c as the current collector.
val get_current_level : unit -> Level.tGet current level. This is only meaningful if a collector was set up with setup_collector.
val set_current_level : Level.t -> unitSet the current level of tracing. This only has a visible effect if a collector was installed with setup_collector.