this repo has no description

[new release] merlin, merlin-lib (4.10-500)

CHANGES:

Thu Aug 24 17:17:42 CEST 2023

+ merlin binary
- Constrain socket path buffer size to avoid build warnings (ocaml/merlin#1631)
- Handle concurrent server start (ocaml/merlin#1622)
- Omit module prefixes for constructors and record fields in the
`construct` command (ocaml/merlin#1618). Prefixes are still produced when
warning 42 (disambiguated name) is active.
- Correctly invalidate PPX cache when pipeline ran partially (ocaml/merlin#1650,
fixes ocaml/merlin#1647)
- Prevent `short-path` from looping in some cases related to recursive type
definitions (ocaml/merlin#1645)
- Support parsing negative numbers in sexps (ocaml/merlin#1655)
- Fix construct not working with inline records (ocaml/merlin#1658)
- Improve behavior of `type-enclosing` on let/and operators (ocaml/merlin#1653)
- Fix occurrences of extension constructors (ocaml/merlin#1662)
- Improve node selection when ghosts are present (ocaml/merlin#1664, fixes ocaml/merlin#1660)
+ editor modes
- emacs: call merlin-client-logger with "interrupted" if the
merlin binary itself is interrupted, not just the parsing of the
result (ocaml/merlin#1626).
- emacs: merlin-construct, with a prefix argument, now includes
local values in the completion options. Alternatively, this
behavior can be enabled permanently by customizing
`merlin-construct-with-local-values` (ocaml/merlin#1644)
- emacs: add support for opam-switch-mode (ocaml/merlin#1654, fixes ocaml/merlin#1591).
See <https://github.com/ProofGeneral/opam-switch-mode>

Changed files
+115
packages
merlin
merlin.4.10-500
merlin-lib
merlin-lib.4.10-500
+34
packages/merlin-lib/merlin-lib.4.10-500/opam
···
+
opam-version: "2.0"
+
maintainer: "defree@gmail.com"
+
authors: "The Merlin team"
+
homepage: "https://github.com/ocaml/merlin"
+
bug-reports: "https://github.com/ocaml/merlin/issues"
+
dev-repo: "git+https://github.com/ocaml/merlin.git"
+
license: "MIT"
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs]
+
]
+
depends: [
+
"ocaml" {>= "5.0" & < "5.1"}
+
"dune" {>= "2.9.0"}
+
"csexp" {>= "1.5.1"}
+
"menhir" {dev & >= "20201216"}
+
"menhirLib" {dev & >= "20201216"}
+
"menhirSdk" {dev & >= "20201216"}
+
]
+
synopsis:
+
"Merlin's libraries"
+
description:
+
"These libraries provides access to low-level compiler interfaces and the
+
standard higher-level merlin protocol. The library is provided as-is, is not
+
thoroughly documented, and its public API might break with any new release."
+
url {
+
src:
+
"https://github.com/ocaml/merlin/releases/download/v4.10-500/merlin-4.10-500.tbz"
+
checksum: [
+
"sha256=9bdf90cfc0d3f78c8d4b0a5a99354b40a2121ed4550569d90f7b7fcb2ba3499d"
+
"sha512=1306e8b691f95c1549e4dfd0b6a702eb6eb40e99c6f5bdcb086d4bd3cd4e8977168fe3a4391f5448cea4a6ef598beb3086ec730a66bb1c96280c9070072be4de"
+
]
+
}
+
x-commit-hash: "50be6becda483ac02383aec6517c9ba90930736d"
+81
packages/merlin/merlin.4.10-500/opam
···
+
opam-version: "2.0"
+
maintainer: "defree@gmail.com"
+
authors: "The Merlin team"
+
homepage: "https://github.com/ocaml/merlin"
+
bug-reports: "https://github.com/ocaml/merlin/issues"
+
dev-repo: "git+https://github.com/ocaml/merlin.git"
+
license: "MIT"
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
+
]
+
depends: [
+
"ocaml" {>= "5.0" & < "5.1"}
+
"dune" {>= "2.9.0"}
+
"merlin-lib" {= version}
+
"dot-merlin-reader" {>= "4.9"}
+
"yojson" {>= "2.0.0"}
+
"conf-jq" {with-test}
+
"ppxlib" {with-test}
+
]
+
conflicts: [
+
"seq" {!= "base"}
+
"base-effects"
+
]
+
synopsis:
+
"Editor helper, provides completion, typing and source browsing in Vim and Emacs"
+
description:
+
"Merlin is an assistant for editing OCaml code. It aims to provide the features available in modern IDEs: error reporting, auto completion, source browsing and much more."
+
post-messages: [
+
"merlin installed.
+
+
Quick setup for VIM
+
-------------------
+
Append this to your .vimrc to add merlin to vim's runtime-path:
+
let g:opamshare = substitute(system('opam var share'),'\\n$','','''')
+
execute \"set rtp+=\" . g:opamshare . \"/merlin/vim\"
+
+
Also run the following line in vim to index the documentation:
+
:execute \"helptags \" . g:opamshare . \"/merlin/vim/doc\"
+
+
Quick setup for EMACS
+
-------------------
+
Add opam emacs directory to your load-path by appending this to your .emacs:
+
(let ((opam-share (ignore-errors (car (process-lines \"opam\" \"var\" \"share\")))))
+
(when (and opam-share (file-directory-p opam-share))
+
;; Register Merlin
+
(add-to-list 'load-path (expand-file-name \"emacs/site-lisp\" opam-share))
+
(autoload 'merlin-mode \"merlin\" nil t nil)
+
;; Automatically start it in OCaml buffers
+
(add-hook 'tuareg-mode-hook 'merlin-mode t)
+
(add-hook 'caml-mode-hook 'merlin-mode t)
+
;; Use opam switch to lookup ocamlmerlin binary
+
(setq merlin-command 'opam)
+
;; To easily change opam switches within a given Emacs session, you can
+
;; install the minor mode https://github.com/ProofGeneral/opam-switch-mode
+
;; and use one of its \"OPSW\" menus.
+
))
+
Take a look at https://github.com/ocaml/merlin for more information
+
+
Quick setup with opam-user-setup
+
--------------------------------
+
+
Opam-user-setup support Merlin.
+
+
$ opam user-setup install
+
+
should take care of basic setup.
+
See https://github.com/OCamlPro/opam-user-setup
+
"
+
{success & !user-setup:installed}
+
]
+
url {
+
src:
+
"https://github.com/ocaml/merlin/releases/download/v4.10-500/merlin-4.10-500.tbz"
+
checksum: [
+
"sha256=9bdf90cfc0d3f78c8d4b0a5a99354b40a2121ed4550569d90f7b7fcb2ba3499d"
+
"sha512=1306e8b691f95c1549e4dfd0b6a702eb6eb40e99c6f5bdcb086d4bd3cd4e8977168fe3a4391f5448cea4a6ef598beb3086ec730a66bb1c96280c9070072be4de"
+
]
+
}
+
x-commit-hash: "50be6becda483ac02383aec6517c9ba90930736d"