this repo has no description

[new release] coq-lsp (0.1.5+8.16)

CHANGES:

---------------------

- Fix a bug when trying to complete in an empty file (@ejgallego,
ejgallego/coq-lsp#270)
- Fix a bug with the position reported by the `$/coq/fileProgress`
notification
- Fix messages panel rendering after the port to React (@ejgallego,
ejgallego/coq-lsp#272)
- Fix non-compliance with LSP range type due to extra `offset` field
(@ejgallego, ejgallego/coq-lsp#271)
- The goal display now numbers goals starting with 1 instead of 0
(@artagnon, ejgallego/coq-lsp#277, report by Hugo Herbelin)
- Markdown Coq code blocks now must specify "coq" as a language
(@ejgallego, ejgallego/coq-lsp#280)
- Server is now more strict w.r.t. what URIs it will accept for
documents, see protocol documentation (@ejgallego, ejgallego/coq-lsp#286, reported
by Alex Sanchez-Stern)
- Hypotheses with bodies are now correctly displayed (@ejgallego,
ejgallego/coq-lsp#296, fixes ejgallego/coq-lsp#293, report by Ali Caglayan)
- `coq-lsp` incorrectly required the optional `rootPath`
initialization parameter, moreover it ignored `rootUri` if present
which goes against the LSP spec (@ejgallego, ejgallego/coq-lsp#295, report by Alex
Sanchez-Stern)
- `coq-lsp` will now reject opening multiple files when the
underlying Coq version is buggy (@ejgallego, fixes ejgallego/coq-lsp#275, fixes
ejgallego/coq-lsp#281)
- Fix bug when parsing client option for unicode completion
(@ejgallego ejgallego/coq-lsp#301)
- Support unicode characters in filenames (@artagnon, ejgallego/coq-lsp#302)
- Stop checking documents after a maximum number of errors,
user-configurable (by default 150) (@ejgallego, ejgallego/coq-lsp#303)
- Coq Markdown files (.mv extension) are now highlighted properly
using both Coq and Markdown syntax rules (@4ever2, ejgallego/coq-lsp#307)
- Goal view now supports find (@Alizter, ejgallego/coq-lsp#309, closes ejgallego/coq-lsp#305)
- coq-lsp now understands a basic version of Coq Waterproof files
(.wpn) Note that we don't associate to them by default, as to allow
the waterproof extension to take over the files (@ejgallego, ejgallego/coq-lsp#306)
- URI validation is now more strict, and some further bugs should be
solved; note still this can be an issue on some client settings
(@ejgallego, ejgallego/coq-lsp#313, fixes ejgallego/coq-lsp#187)
- Display Coq info and debug messages in info panel (@ejgallego,
ejgallego/coq-lsp#314, fixes ejgallego/coq-lsp#308)
- Goal display handles background goals better, showing preview,
goals stack, and focusing information (@ejgallego, ejgallego/coq-lsp#290, fixes
ejgallego/coq-lsp#288, fixes ejgallego/coq-lsp#304, based on jsCoq code by Shachar Itzhaky)
- Warnings are now printed in the info view messages panel
(@ejgallego, ejgallego/coq-lsp#315, fixes ejgallego/coq-lsp#195)
- Info protocol messages now have location and level
(@ejgallego, ejgallego/coq-lsp#315)
- Warnings are not printed in the info view messages panel
(@ejgallego, #, fixes ejgallego/coq-lsp#195)
- Improved `documentSymbol` return type for newer `DocumentSymbol[]`
hierarchical symbol support. This means that sections and modules
will now be properly represented, as well as constructors for
inductive types, projections for records, etc... (@ejgallego,
ejgallego/coq-lsp#174, fixes ejgallego/coq-lsp#121, ejgallego/coq-lsp#122)
- [internal] Error recovery can now execute full Coq commands as to
amend states, required for ejgallego/coq-lsp#319 (@ejallego, ejgallego/coq-lsp#320)
- Auto-admit the previous bullet goal when a new bullet cannot be
opened due to an unsolved previous bullet. This also works for {}
focusing operators. This is very useful when navigating bulleted
proofs (@ejgallego, @Alizter, ejgallego/coq-lsp#319, fixes ejgallego/coq-lsp#300)
- Store Ast.Info.t incrementally (@ejgallego, ejgallego/coq-lsp#337, fixes ejgallego/coq-lsp#316)
- Basic jump to definition support; due to lack of workspace
metadata, this only works inside the same file (@ejgallego, ejgallego/coq-lsp#318)
- Show type of identifiers at point on hover (@ejgallego, ejgallego/coq-lsp#321, cc:
ejgallego/coq-lsp#164)

Changed files
+48
packages
coq-lsp
coq-lsp.0.1.5+8.16
+48
packages/coq-lsp/coq-lsp.0.1.5+8.16/opam
···
+
synopsis: "Language Server Protocol native server for Coq"
+
description:
+
"""
+
Language Server Protocol native server for Coq
+
"""
+
opam-version: "2.0"
+
maintainer: "e@x80.org"
+
bug-reports: "https://github.com/ejgallego/coq-lsp/issues"
+
homepage: "https://github.com/ejgallego/coq-lsp"
+
dev-repo: "git+https://github.com/ejgallego/coq-lsp.git"
+
authors: [
+
"Emilio Jesús Gallego Arias <e@x80.org>"
+
"Ali Caglayan <alizter@gmail.com>"
+
"Shachar Itzhaky <shachari@cs.technion.ac.il>"
+
"Ramkumar Ramachandra <r@artagnon.com>"
+
]
+
license: "LGPL-2.1-or-later"
+
doc: "https://ejgallego.github.io/coq-lsp/"
+
+
depends: [
+
"ocaml" { >= "4.11.0" }
+
"dune" { >= "3.2" }
+
+
# lsp dependencies
+
"cmdliner" { >= "1.1.0" }
+
"yojson" { >= "1.7.0" }
+
"uri" { >= "4.2.0" }
+
+
# waterproof parser
+
"menhir" { >= "20220210" }
+
+
# Uncomment this for releases
+
"coq" { >= "8.16.0" & < "8.17" }
+
"coq-serapi" { >= "8.16.0+0.16.2" & < "8.17" }
+
"camlp-streams" { >= "5.0" }
+
]
+
+
build: [ [ "dune" "build" "-p" name "-j" jobs ] ]
+
run-test: [ [ "dune" "runtest" "-p" name "-j" jobs ] ]
+
url {
+
src:
+
"https://github.com/ejgallego/coq-lsp/releases/download/0.1.5%2B8.16/coq-lsp-0.1.5.8.16.tbz"
+
checksum: [
+
"sha256=5a0819d6ceb18cf031ece2c466eefd27f018d85c1c7472038bbb7c2663714b6e"
+
"sha512=be97b25db922014681dce75a68566b887f692c60208b698f03ce8b2fc0c1a2eab5c0c563d698eeb1d21dea5405468e958e67cce9a6c94a3106529f1b4ebfce13"
+
]
+
}
+
x-commit-hash: "40cf80963146585badf868b1b9922d967ecf58a9"