Skip to content

Commit 3c26d05

Browse files
committed
[new release] coq-lsp (0.1.6.1+8.17)
CHANGES: --------------------- - The info / goal view now uses jsCoq's client-side rendering, with better highlighting and layout rendering (@artagnon, @ejgallego, ejgallego/rocq-lsp#143, fixes ejgallego/rocq-lsp#96) - Printing method is now configurable by the user (@ejgallego, ejgallego/rocq-lsp#143, fixes ejgallego/rocq-lsp#321) - Trigger completion on quote char "'" (@ejgallego, ejgallego/rocq-lsp#350) - Fix typo on keybinding config for show goals (@tomtomjhj, ejgallego/rocq-lsp#357) - New request `coq/getDocument` to get serialized full document contents. Thanks to Clément Pit-Claudel for feedback and ideas. (@ejgallego, ejgallego/rocq-lsp#350) - Auto-ignore Coq object files; can be disabled in config (@ejgallego, ejgallego/rocq-lsp#365) - Support workspaces with multiple roots, this is very useful for projects that contain several `_CoqProject` files in different directories (@ejgallego, ejgallego/rocq-lsp#374) - Add VS Code commands to start / stop the server (@ejgallego, ejgallego/rocq-lsp#377, cc ejgallego/rocq-lsp#209) - Fix bug that made the server not exit on `exit` LSP notification (@artagnon, @ejgallego, ejgallego/rocq-lsp#375, fixes ejgallego/rocq-lsp#230) - Lay the foundation for server tests (@artagnon, ejgallego/rocq-lsp#356) - Remove the `coq-lsp.ok_diagnostics` setting (@artagnon, ejgallego/rocq-lsp#129) - Print abbreviations on hover (@ejgallego, ejgallego/rocq-lsp#384) - Print hover types without parenthesis (@ejgallego, ejgallego/rocq-lsp#384) - Parse identifiers with dot for hover and jump to definition (@ejallego, ejgallego/rocq-lsp#385) - Update `vscode-languageclient` to 8.1.0 (@ejgallego, @Alizter, ejgallego/rocq-lsp#383, fixes ejgallego/rocq-lsp#273) - Fix typo on max_errors checking, this made coq-lsp stop on the number of total diagnostics, instead of only errors (@ejgallego, ejgallego/rocq-lsp#386) - Hover symbol information: hypothesis names must shadow globals of the same name (@ejgallego, ejgallego/rocq-lsp#391, fixes ejgallego/rocq-lsp#388) - De-schedule document on didClose, otherwise the scheduler will keep trying to resume it if it didn't finish (@ejgallego, ejgallego/rocq-lsp#392) - Hover symbol information: correctly handle identifiers before '.' and containing a quote (') themselves (@ejgallego, ejgallego/rocq-lsp#393) - Add children entries to the table-of-contents (@ejgallego, ejgallego/rocq-lsp#394) - Invalidate Coq's imperative cache on error (@ejgallego, @r-muhairi, ejgallego/rocq-lsp#395) - Add status bar button to toggle server run status (@ejgallego, @Alizter, ejgallego/rocq-lsp#378, closes ejgallego/rocq-lsp#209) - Support for `COQLIB` and `COQCORELIB` environment variables, added `--coqcorelib` command line argument (@ejgallego, ejgallego/rocq-lsp#403) - Protocol infrastructure for code lenses (@ejgallego, ejgallego/rocq-lsp#396) - Set binary mode for protocol input / output (@ejgallego, ejgallego/rocq-lsp#408) - Allow to set `ocamlpath` from the command line (@ejgallego, ejgallego/rocq-lsp#408) - Windows support (@ejgallego, @jim-portegies, ejgallego/rocq-lsp#408) - Scroll active goal into view (@ejgallego, ejgallego/rocq-lsp#410, fixes ejgallego/rocq-lsp#381) - Server status icon will now react properly to fatal server errors (@ejgallego, reported by @Alizter, ejgallego/rocq-lsp#411, fixes ejgallego/rocq-lsp#399) - Info on memory and time is now disabled by default, new option `coq-lsp.stats_on_hover_option` to re-enable it (@ejgallego, ejgallego/rocq-lsp#412, fixes ejgallego/rocq-lsp#398). - `coq-lsp` can now save `.vo` files for files opened in the editor. Use the new "Save to .vo" command, or the new protocol `coq/saveVo` request (@ejgallego, ejgallego/rocq-lsp#417, fixes ejgallego/rocq-lsp#339)
1 parent 0067676 commit 3c26d05

File tree

1 file changed

+48
-0
lines changed
  • packages/coq-lsp/coq-lsp.0.1.6.1+8.17

1 file changed

+48
-0
lines changed
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
synopsis: "Language Server Protocol native server for Coq"
2+
description:
3+
"""
4+
Language Server Protocol native server for Coq
5+
"""
6+
opam-version: "2.0"
7+
maintainer: "[email protected]"
8+
bug-reports: "https://github.com/ejgallego/coq-lsp/issues"
9+
homepage: "https://github.com/ejgallego/coq-lsp"
10+
dev-repo: "git+https://github.com/ejgallego/coq-lsp.git"
11+
authors: [
12+
"Emilio Jesús Gallego Arias <[email protected]>"
13+
"Ali Caglayan <[email protected]>"
14+
"Shachar Itzhaky <[email protected]>"
15+
"Ramkumar Ramachandra <[email protected]>"
16+
]
17+
license: "LGPL-2.1-or-later"
18+
doc: "https://ejgallego.github.io/coq-lsp/"
19+
20+
depends: [
21+
"ocaml" { >= "4.11.0" }
22+
"dune" { >= "3.2.0" }
23+
24+
# lsp dependencies
25+
"cmdliner" { >= "1.1.0" }
26+
"yojson" { >= "1.7.0" }
27+
"uri" { >= "4.2.0" }
28+
"dune-build-info" { >= "3.2.0" }
29+
30+
# waterproof parser
31+
"menhir" { >= "20220210" }
32+
33+
# Uncomment this for releases
34+
"coq" { >= "8.17" < "8.18" }
35+
"coq-serapi" { >= "8.17+rc1+0.17.1" < "8.18" }
36+
]
37+
38+
build: [ [ "dune" "build" "-p" name "-j" jobs ] ]
39+
run-test: [ [ "dune" "runtest" "-p" name "-j" jobs ] ]
40+
url {
41+
src:
42+
"https://github.com/ejgallego/coq-lsp/releases/download/0.1.6.1%2B8.17/coq-lsp-0.1.6.1.8.17.tbz"
43+
checksum: [
44+
"sha256=0b0ea3ce68aa549f61c004dd05d2b386dc18811ec4c9ac667ff2917857758707"
45+
"sha512=d3e3ae7e055c1be38368fdc86679462e2aa4636805142e8fd1f73423a14a7c87e06d752f04964377fe39ed10972e3c47d433127694b104c0285adb976faadf66"
46+
]
47+
}
48+
x-commit-hash: "36467bd7442943af19ce84c646a64f356a0ca5bb"

0 commit comments

Comments
 (0)