From e0c615b46323daabb9e63320a966802095a5ad1d Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Thu, 19 Aug 2021 12:45:31 -0700 Subject: [PATCH] remove vscode only item from change log it's already mentioned in the vscode change log Signed-off-by: Rudi Grinberg --- CHANGES.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index efd9e1b7c..1f2c6c297 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -13,18 +13,6 @@ Adding `rec` to the definition of `fact` will fix the problem. The new code action offers adding `rec`. -- Jump to the first hole on calling `Destruct` code action (only with client - VSCode OCaml Platform) (#468) - - Example: when a user invokes `Destruct` code action on `Some 1`, this code is - replaced by `match Some 1 with None -> _ | Some _ -> _`, where the 1st and - 3rd underscores are "typed holes", a concept created by Merlin to be able to - put "holes" in OCaml code. - - With this change, now for VSCode OCaml Platform users, on such invocation of - `Destruct`, the cursor will jump to the first typed hole and select it, so - that user can start editing right away. - - Use ocamlformat to properly format type snippets. This feature requires the `ocamlformat-rpc` opam package to be installed. (#386)